diff options
author | Reid Kleckner <rnk@google.com> | 2019-02-26 02:22:22 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-02-26 02:22:22 +0000 |
commit | 1144084cb24ae53a120db47b1e77188247d7b583 (patch) | |
tree | e1d935e6170ce5b75a4fcbf6df3ecbd18dd20d7f /clang/test/ASTMerge/asm/Inputs/asm-function.cpp | |
parent | 2bc58bd06dc4aeb2f10fb3bf56a69583b4ebf212 (diff) | |
download | bcm5719-llvm-1144084cb24ae53a120db47b1e77188247d7b583.tar.gz bcm5719-llvm-1144084cb24ae53a120db47b1e77188247d7b583.zip |
Revert r354832 "[ASTImporter] Add support for importing ChooseExpr AST nodes."
Test does not pass on Windows
llvm-svn: 354839
Diffstat (limited to 'clang/test/ASTMerge/asm/Inputs/asm-function.cpp')
-rw-r--r-- | clang/test/ASTMerge/asm/Inputs/asm-function.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/clang/test/ASTMerge/asm/Inputs/asm-function.cpp b/clang/test/ASTMerge/asm/Inputs/asm-function.cpp deleted file mode 100644 index 1b8783354fc..00000000000 --- a/clang/test/ASTMerge/asm/Inputs/asm-function.cpp +++ /dev/null @@ -1,21 +0,0 @@ - -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 asmFunc2(int i) { - int res; - asm ("mov %1, %0 \t\n" - "inc %0 " - : "=r" (res) - : "r" (i) - : "cc"); - return res; -} |