Skip to content
Snippets Groups Projects
Commit 131d93e5 authored by Michael Kuperstein's avatar Michael Kuperstein
Browse files

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


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@239696 91177308-0d34-0410-b5e6-96231b3b80d8
parent 2a755b2f
No related branches found
No related tags found
No related merge requests found
......@@ -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}"()
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment