aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll')
-rw-r--r--test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll b/test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll
index 45b561affffa..f614db00da48 100644
--- a/test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll
+++ b/test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll
@@ -1,10 +1,14 @@
-; RUN: llc < %s -soft-float
+; RUN: llc < %s
; PR3899
@m = external global <2 x double>
-define double @vector_ex() nounwind {
- %v = load <2 x double>* @m
+define double @vector_ex() nounwind #0 {
+ %v = load <2 x double>, <2 x double>* @m
%x = extractelement <2 x double> %v, i32 1
ret double %x
}
+
+; Soft-float attribute so that targets that pay attention to soft float will
+; make floating point types illegal and we'll exercise the legalizer code.
+attributes #0 = { "use-soft-float" = "true" }