Tell llvm-mc we're using intel syntax, so we don't have to use directives.
authorChad Rosier <mcrosier@apple.com>
Wed, 24 Oct 2012 23:34:38 +0000 (23:34 +0000)
committerChad Rosier <mcrosier@apple.com>
Wed, 24 Oct 2012 23:34:38 +0000 (23:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166640 91177308-0d34-0410-b5e6-96231b3b80d8

test/MC/X86/x86-32-ms-inline-asm.s

index aedef463850c13eb87f7a47a1ac1d1f52f146dec..a5e80b2c9389f557535c8976165a95aa2726cb99 100644 (file)
@@ -1,12 +1,10 @@
-// RUN: llvm-mc -triple i386-unknown-unknown --show-encoding %s | FileCheck %s
+// RUN: llvm-mc -x86-asm-syntax=intel -triple i386-unknown-unknown --show-encoding %s | FileCheck %s
 
-.intel_syntax
 mov eax, [ebx].0
 mov [ebx].4, ecx
-.att_syntax
-        
-; CHECK: movl (%ebx), %eax
-; CHECK: encoding: [0x8b,0x03]
-; CHECK: movl %ecx, 4(%ebx)
-; CHECK: encoding: [0x89,0x4b,0x04]
+
+// CHECK: movl (%ebx), %eax
+// CHECK: encoding: [0x8b,0x03]
+// CHECK: movl %ecx, 4(%ebx)
+// CHECK: encoding: [0x89,0x4b,0x04]