From 2234e0da4c33cd77f82fd4b7c99a54f711e3057c Mon Sep 17 00:00:00 2001 From: Aleksei Sidorin Date: Wed, 28 Sep 2016 10:57:36 +0000 Subject: ASTMerge: specify arch for GCCAsmStmt test explicitly to calm non-x86 buildbots llvm-svn: 282576 --- clang/test/ASTMerge/Inputs/exprs3.cpp | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'clang/test/ASTMerge/Inputs/exprs3.cpp') 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; } -- cgit v1.2.3