From ce1ce989e2b2fc3b992109f82b31a403db015ec6 Mon Sep 17 00:00:00 2001 From: Michael Kuperstein Date: Sun, 14 Jun 2015 13:03:27 +0000 Subject: [PATCH] Add test for parsing the XOR operator in Intel syntax inline assembly. LLVM side of the patch was committed as r239695. Differential Revision: http://reviews.llvm.org/D10384 Patch by marina.yatsina@intel.com llvm-svn: 239696 --- clang/test/CodeGen/ms-inline-asm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clang/test/CodeGen/ms-inline-asm.c b/clang/test/CodeGen/ms-inline-asm.c index a6f1b71..d98b498 100644 --- a/clang/test/CodeGen/ms-inline-asm.c +++ b/clang/test/CodeGen/ms-inline-asm.c @@ -432,6 +432,8 @@ void t37() { // CHECK: mov eax, $$4294967292 __asm mov eax, ~15 // CHECK: mov eax, $$4294967280 + __asm mov eax, 6 ^ 3 +// CHECK: mov eax, $$5 // CHECK: "~{eax},~{dirflag},~{fpsr},~{flags}"() } -- 2.7.4