ASTMerge: specify arch for GCCAsmStmt test explicitly to calm non-x86 buildbots

llvm-svn: 282576
This commit is contained in:
Aleksei Sidorin 2016-09-28 10:57:36 +00:00
parent 6264758cc8
commit 2234e0da4c
1 changed files with 0 additions and 11 deletions

View File

@ -104,17 +104,6 @@ void testOffsetOf() {
}
unsigned char asmFunc(unsigned char a, unsigned char b) {
unsigned int la = a;
unsigned int lb = b;
unsigned int bigres;
unsigned char res;
__asm__ ("0:\n1:\n" : [bigres] "=la"(bigres) : [la] "0"(la), [lb] "c"(lb) :
"edx", "cc");
res = bigres;
return res;
}
int testDefaultArg(int a = 2*2) {
return a;
}