diff options
author | Aleksei Sidorin <a.sidorin@samsung.com> | 2016-09-28 10:57:36 +0000 |
---|---|---|
committer | Aleksei Sidorin <a.sidorin@samsung.com> | 2016-09-28 10:57:36 +0000 |
commit | 2234e0da4c33cd77f82fd4b7c99a54f711e3057c (patch) | |
tree | 2aa4db955f46200294e2b9baa50411b5954968fd /clang/test/ASTMerge | |
parent | 6264758cc8cd62205b9073828359fb866bc27d59 (diff) | |
download | bcm5719-llvm-2234e0da4c33cd77f82fd4b7c99a54f711e3057c.tar.gz bcm5719-llvm-2234e0da4c33cd77f82fd4b7c99a54f711e3057c.zip |
ASTMerge: specify arch for GCCAsmStmt test explicitly to calm non-x86 buildbots
llvm-svn: 282576
Diffstat (limited to 'clang/test/ASTMerge')
-rw-r--r-- | clang/test/ASTMerge/Inputs/exprs3.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/clang/test/ASTMerge/Inputs/exprs3.cpp b/clang/test/ASTMerge/Inputs/exprs3.cpp index 1fb667b4577..7ed8e338452 100644 --- a/clang/test/ASTMerge/Inputs/exprs3.cpp +++ b/clang/test/ASTMerge/Inputs/exprs3.cpp @@ -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; } |