[ms-inline asm] Add test case for r175083.
authorChad Rosier <mcrosier@apple.com>
Wed, 13 Feb 2013 21:34:54 +0000 (21:34 +0000)
committerChad Rosier <mcrosier@apple.com>
Wed, 13 Feb 2013 21:34:54 +0000 (21:34 +0000)
llvm-svn: 175084

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

index 05ea0e0..2283a50 100644 (file)
@@ -336,3 +336,15 @@ void t29() {
 // CHECK: call void asm sideeffect inteldialect "mov dword ptr $0, $$8", "=*m,~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}) nounwind
 // CHECK: call void asm sideeffect inteldialect "mov dword ptr $0, $$4", "=*m,~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}) nounwind
 }
+
+int results[2] = {13, 37};
+int *t30()
+{
+  int *res;
+  __asm lea edi, results
+  __asm mov res, edi
+  return res;
+// CHECK: t30
+// CHECK: call void asm sideeffect inteldialect "lea edi, dword ptr $0", "*m,~{edi},~{dirflag},~{fpsr},~{flags}"([2 x i32]* @{{.*}}) nounwind
+// CHECK: call void asm sideeffect inteldialect "mov dword ptr $0, edi", "=*m,~{dirflag},~{fpsr},~{flags}"(i32** %{{.*}}) nounwind
+}