aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86ISelLowering.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-08-26 05:51:22 +0000
committerChris Lattner <sabre@nondot.org>2010-08-26 05:51:22 +0000
commitaf14747dd46c49b16ea83b0564a880c03cb59175 (patch)
tree3d0e33e38be4af7c0cdd407f14a9bc6823115bdb /lib/Target/X86/X86ISelLowering.cpp
parent8d1f30a7b84941f0777010f15ce810d2091934fe (diff)
downloadexternal_llvm-af14747dd46c49b16ea83b0564a880c03cb59175.zip
external_llvm-af14747dd46c49b16ea83b0564a880c03cb59175.tar.gz
external_llvm-af14747dd46c49b16ea83b0564a880c03cb59175.tar.bz2
implement SplitVecOp_CONCAT_VECTORS, fixing the included testcase with SSE1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112171 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86ISelLowering.cpp')
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index c2e37b6..861284e 100644
--- a/lib/Target/X86/X86ISelLowering.cpp
+++ b/lib/Target/X86/X86ISelLowering.cpp
@@ -1320,9 +1320,8 @@ X86TargetLowering::LowerReturn(SDValue Chain,
// llvm-gcc has never done it right and no one has noticed, so this
// should be OK for now.
if (ValVT == MVT::f64 &&
- (Subtarget->is64Bit() && !Subtarget->hasSSE2())) {
+ (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
report_fatal_error("SSE2 register return with SSE2 disabled");
- }
// Returns in ST0/ST1 are handled specially: these are pushed as operands to
// the RET instruction and handled by the FP Stackifier.