diff options
author | Eric Christopher <echristo@apple.com> | 2011-06-03 20:44:52 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-06-03 20:44:52 +0000 |
commit | ce1ecf59c80db0ff922e599e4334258f9fa65783 (patch) | |
tree | 05539d0934f9d4744fd6c706612278014cd4b32d /test | |
parent | c3526c778efc0910c81cbc9ba1e9362d3c4094c3 (diff) | |
download | external_llvm-ce1ecf59c80db0ff922e599e4334258f9fa65783.zip external_llvm-ce1ecf59c80db0ff922e599e4334258f9fa65783.tar.gz external_llvm-ce1ecf59c80db0ff922e599e4334258f9fa65783.tar.bz2 |
Fix an off by one error.
Part of rdar://9037836 and rdar://9119939
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132590 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/ARM/inlineasm3.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/inlineasm3.ll b/test/CodeGen/ARM/inlineasm3.ll index ff54d6d..cf38d8c 100644 --- a/test/CodeGen/ARM/inlineasm3.ll +++ b/test/CodeGen/ARM/inlineasm3.ll @@ -41,3 +41,12 @@ entry: tail call void asm sideeffect "flds s15, $0 \0A", "^Uv|m,~{s15}"(float 1.000000e+00) nounwind ret i32 0 } + +; Radar 9037836 & 9119939 + +@k.2126 = internal unnamed_addr global float 1.000000e+00 +define i32 @t4() nounwind { +entry: +call void asm sideeffect "flds s15, $0 \0A", "*^Uv,~{s15}"(float* @k.2126) nounwind +ret i32 0 +} |