summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2006-12-10 23:12:42 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2006-12-10 23:12:42 +0000
commit3b7c257cae5fe1d24a8da76dbbdaf01576d2451d (patch)
treefbabbcbb422fd7637342cc35b8648145bee56536 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
parent6161452b67134a1913e164519f6bac6493771e2d (diff)
downloadbcm5719-llvm-3b7c257cae5fe1d24a8da76dbbdaf01576d2451d.tar.gz
bcm5719-llvm-3b7c257cae5fe1d24a8da76dbbdaf01576d2451d.zip
Cleaned setjmp/longjmp lowering interfaces. Now we're producing right
code (both asm & cbe) for Mingw32 target. Removed autoconf checks for underscored versions of setjmp/longjmp. llvm-svn: 32415
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 314941a3561..79e8013e4f5 100644
--- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -47,7 +47,8 @@ TargetLowering::TargetLowering(TargetMachine &tm)
sizeof(TargetDAGCombineArray)/sizeof(TargetDAGCombineArray[0]));
maxStoresPerMemset = maxStoresPerMemcpy = maxStoresPerMemmove = 8;
allowUnalignedMemoryAccesses = false;
- UseUnderscoreSetJmpLongJmp = false;
+ UseUnderscoreSetJmp = false;
+ UseUnderscoreLongJmp = false;
IntDivIsCheap = false;
Pow2DivIsCheap = false;
StackPointerRegisterToSaveRestore = 0;
OpenPOWER on IntegriCloud