diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-10-23 23:42:25 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-10-23 23:42:25 +0000 |
commit | e72faf6148aadae316ce1fa2deb8289c10ee1ab9 (patch) | |
tree | 7e5773f7150db8f33b0230cc14ff8cf9c2187e51 | |
parent | 82573e357fa544f5f95b63ef3519a548b1f7e478 (diff) |
[ms-inline asm] Test case for r166526.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166527 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/ms-inline-asm-64.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/ms-inline-asm-64.c b/test/CodeGen/ms-inline-asm-64.c new file mode 100644 index 0000000000..6bf3e209d1 --- /dev/null +++ b/test/CodeGen/ms-inline-asm-64.c @@ -0,0 +1,9 @@ +// REQUIRES: x86-64-registered-target +// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -O0 -fms-extensions -fenable-experimental-ms-inline-asm -w -emit-llvm -o - | FileCheck %s + +void t1() { + int var = 10; + __asm mov rax, offset var ; rax = address of myvar +// CHECK: t1 +// CHECK: call void asm sideeffect inteldialect "mov rax, $0", "r,~{rax},~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}) nounwind +} |