diff options
author | Duraid Madina <duraid@octopus.com.au> | 2006-09-04 06:21:35 +0000 |
---|---|---|
committer | Duraid Madina <duraid@octopus.com.au> | 2006-09-04 06:21:35 +0000 |
commit | cf6749e4c0912f0631824914b4d97e57849b33ad (patch) | |
tree | 71ed66f8af02966a36f37d9d137e36a919228a31 /llvm/lib/CodeGen/LLVMTargetMachine.cpp | |
parent | a59bee75a725bb66a5aec2b114040a938683720a (diff) | |
download | bcm5719-llvm-cf6749e4c0912f0631824914b4d97e57849b33ad.tar.gz bcm5719-llvm-cf6749e4c0912f0631824914b4d97e57849b33ad.zip |
add setJumpBufSize() and setJumpBufAlignment() to target-lowering.
Call these from your backend to enjoy setjmp/longjmp goodness, see
lib/Target/IA64/IA64ISelLowering.cpp for an example
llvm-svn: 30095
Diffstat (limited to 'llvm/lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LLVMTargetMachine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp index 2f250c8a889..6c4544a1173 100644 --- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp +++ b/llvm/lib/CodeGen/LLVMTargetMachine.cpp @@ -33,7 +33,7 @@ bool LLVMTargetMachine::addPassesToEmitFile(FunctionPassManager &PM, PM.add(createLowerGCPass()); // FIXME: Implement the invoke/unwind instructions! - PM.add(createLowerInvokePass()); + PM.add(createLowerInvokePass(getTargetLowering())); // Make sure that no unreachable blocks are instruction selected. PM.add(createUnreachableBlockEliminationPass()); @@ -107,7 +107,7 @@ bool LLVMTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM, PM.add(createLowerGCPass()); // FIXME: Implement the invoke/unwind instructions! - PM.add(createLowerInvokePass()); + PM.add(createLowerInvokePass(getTargetLowering())); // Make sure that no unreachable blocks are instruction selected. PM.add(createUnreachableBlockEliminationPass()); |