aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/ms-inline-asm.ll
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-09-10 21:36:05 +0000
committerChad Rosier <mcrosier@apple.com>2012-09-10 21:36:05 +0000
commit24f5fddbdff3d54d822555ae792a7f3bb22e342f (patch)
tree63373c1eb6674385d21482d16c63bdee1afe3a72 /test/CodeGen/X86/ms-inline-asm.ll
parent5c3dcb7bc0d20918ae25b9f619ae21e0fd8879d6 (diff)
downloadexternal_llvm-24f5fddbdff3d54d822555ae792a7f3bb22e342f.zip
external_llvm-24f5fddbdff3d54d822555ae792a7f3bb22e342f.tar.gz
external_llvm-24f5fddbdff3d54d822555ae792a7f3bb22e342f.tar.bz2
[ms-inline asm] Properly emit the asm directives when the AsmPrinterVariant
and InlineAsmVariant don't match. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163550 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/ms-inline-asm.ll')
-rw-r--r--test/CodeGen/X86/ms-inline-asm.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/ms-inline-asm.ll b/test/CodeGen/X86/ms-inline-asm.ll
index ea096c7..9bebcbd 100644
--- a/test/CodeGen/X86/ms-inline-asm.ll
+++ b/test/CodeGen/X86/ms-inline-asm.ll
@@ -6,9 +6,9 @@ entry:
ret i32 %0
; CHECK: t1
; CHECK: ## InlineAsm Start
-; FIXME: .intel_syntax
+; CHECK: .intel_syntax
; CHECK: mov eax, ecx
; CHECK: mov ecx, eax
-; FIXME: .att_syntax
+; CHECK: .att_syntax
; CHECK: ## InlineAsm End
}