summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fp-stack-2results.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/fp-stack-2results.ll')
-rw-r--r--test/CodeGen/X86/fp-stack-2results.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/X86/fp-stack-2results.ll b/test/CodeGen/X86/fp-stack-2results.ll
new file mode 100644
index 0000000000..b44d3dd511
--- /dev/null
+++ b/test/CodeGen/X86/fp-stack-2results.ll
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc -march=x86 | grep fldz
+; RUN: llvm-as < %s | llc -march=x86-64 | grep fld1
+
+; This is basically this code on x86-64:
+; _Complex long double test() { return 1.0; }
+define {x86_fp80, x86_fp80} @test() {
+ %A = fpext double 1.0 to x86_fp80
+ %B = fpext double 0.0 to x86_fp80
+ ret x86_fp80 %A, x86_fp80 %B
+}
+