[ms-inline asm] Add test cases for r166451.
authorChad Rosier <mcrosier@apple.com>
Wed, 24 Oct 2012 17:48:01 +0000 (17:48 +0000)
committerChad Rosier <mcrosier@apple.com>
Wed, 24 Oct 2012 17:48:01 +0000 (17:48 +0000)
llvm-svn: 166600

clang/test/CodeGen/ms-inline-asm.c

index 597d581..3c2025c 100644 (file)
@@ -153,3 +153,13 @@ void t16() {
 // CHECK: t16
 // CHECK: call void asm sideeffect inteldialect "mov [eax], $0", "r,~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}) nounwind
 }
+
+void t17() {
+  __asm _emit 0x4A
+  __asm _emit 0x43
+  __asm _emit 0x4B
+// CHECK: t17
+// CHECK:  call void asm sideeffect inteldialect ".byte 0x4A", "~{dirflag},~{fpsr},~{flags}"() nounwind
+// CHECK:  call void asm sideeffect inteldialect ".byte 0x43", "~{dirflag},~{fpsr},~{flags}"() nounwind
+// CHECK:  call void asm sideeffect inteldialect ".byte 0x4B", "~{dirflag},~{fpsr},~{flags}"() nounwind
+}