diff options
author | Eric Christopher <echristo@apple.com> | 2011-06-03 17:24:37 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-06-03 17:24:37 +0000 |
commit | cf714d44b89864cf92d9c73508154457d0c65d9c (patch) | |
tree | 13f5c9987b1634ba7e91041a430d7d7cdb3d2c82 /test/CodeGen/ARM/inlineasm3.ll | |
parent | e0b42c02f0764ea9df9c17efffc7838203fb8f16 (diff) | |
download | external_llvm-cf714d44b89864cf92d9c73508154457d0c65d9c.zip external_llvm-cf714d44b89864cf92d9c73508154457d0c65d9c.tar.gz external_llvm-cf714d44b89864cf92d9c73508154457d0c65d9c.tar.bz2 |
Make the Uv constraint a memory operand. This doesn't solve the
addressing mode problem mentioned in r132559.
Backend part of rdar://9037836 and part of rdar://9119939
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132561 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/inlineasm3.ll')
-rw-r--r-- | test/CodeGen/ARM/inlineasm3.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/inlineasm3.ll b/test/CodeGen/ARM/inlineasm3.ll index fffb39a..ff54d6d 100644 --- a/test/CodeGen/ARM/inlineasm3.ll +++ b/test/CodeGen/ARM/inlineasm3.ll @@ -33,3 +33,11 @@ entry: %asmtmp31 = call %0 asm "vld1.u8 {$0}, [$1, :128]!\0A", "=w,=r,1"(<16 x i8>* undef) nounwind unreachable } + +; Radar 9037836 & 9119939 + +define i32 @t3() nounwind { +entry: +tail call void asm sideeffect "flds s15, $0 \0A", "^Uv|m,~{s15}"(float 1.000000e+00) nounwind +ret i32 0 +} |