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
This commit is contained in:
Michael Kuperstein 2015-06-14 13:03:27 +00:00
parent e3de07a529
commit ce1ce989e2
1 changed files with 2 additions and 0 deletions

View File

@ -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}"()
}