diff options
author | Eric Christopher <echristo@apple.com> | 2011-06-03 22:09:12 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-06-03 22:09:12 +0000 |
commit | ec281c8934a8400ad0da100cd4afd8abcb913d09 (patch) | |
tree | f5c3e525d10be46c4f53228adcf923c85f615707 /test | |
parent | ce8671c6127aafc819137f2e4dd067567187129b (diff) | |
download | external_llvm-ec281c8934a8400ad0da100cd4afd8abcb913d09.zip external_llvm-ec281c8934a8400ad0da100cd4afd8abcb913d09.tar.gz external_llvm-ec281c8934a8400ad0da100cd4afd8abcb913d09.tar.bz2 |
Another possible bug. Stopgap until we can autogenerate tables and
constraint lengths.
Part of rdar://9037836 and rdar://9119939
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132598 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-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 cf38d8c..58687b9 100644 --- a/test/CodeGen/ARM/inlineasm3.ll +++ b/test/CodeGen/ARM/inlineasm3.ll @@ -50,3 +50,11 @@ entry: call void asm sideeffect "flds s15, $0 \0A", "*^Uv,~{s15}"(float* @k.2126) nounwind ret i32 0 } + +; Radar 9037836 & 9119939 + +define i32 @t5() nounwind { +entry: +call void asm sideeffect "flds s15, $0 \0A", "*^Uvm,~{s15}"(float* @k.2126) nounwind +ret i32 0 +} |