diff --git a/clang/test/ASTMerge/Inputs/exprs3.cpp b/clang/test/ASTMerge/Inputs/exprs3.cpp index 1fb667b4577b..7ed8e338452f 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; }