Skip to content
Snippets Groups Projects
Commit 9fecde6a authored by Aleksei Sidorin's avatar Aleksei Sidorin
Browse files

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


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@282576 91177308-0d34-0410-b5e6-96231b3b80d8
parent e8b5e6d5
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment