diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-01-01 20:58:46 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-01-01 20:58:46 +0000 |
commit | 03277e7fb4d12f0d15dc2c97787fc89ecdaecf94 (patch) | |
tree | 09a99260ca79d1b2f4225091dafd1d3e294c30a5 /test/CodeGen | |
parent | 1db58f936b4669ed6c8b76cee59e9b56e1bf4d8d (diff) | |
download | external_llvm-03277e7fb4d12f0d15dc2c97787fc89ecdaecf94.zip external_llvm-03277e7fb4d12f0d15dc2c97787fc89ecdaecf94.tar.gz external_llvm-03277e7fb4d12f0d15dc2c97787fc89ecdaecf94.tar.bz2 |
Add support for the 'H' modifier.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/inline-asm-h.ll | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/X86/inline-asm-h.ll b/test/CodeGen/X86/inline-asm-h.ll new file mode 100644 index 0000000..7f83c3a --- /dev/null +++ b/test/CodeGen/X86/inline-asm-h.ll @@ -0,0 +1,12 @@ +; RUN: llc -march=x86-64 < %s | FileCheck %s + +@foobar = common global i32 0, align 4 + +define void @zed() nounwind { +entry: + call void asm "movq %mm2,${0:H}", "=*m,~{dirflag},~{fpsr},~{flags}"(i32* @foobar) nounwind + ret void +} + +; CHECK: zed +; CHECK: movq %mm2,foobar+8(%rip) |