diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-09-05 00:22:25 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-09-05 00:22:25 +0000 |
commit | 3852b2ce7eb0cbdbc0191c8738646197af4f5e47 (patch) | |
tree | 1d6dba6171169d19afc5c228de04e4fb5debbb14 /llvm/lib | |
parent | bb902cf0b9803fafaac62abc4f8e368077605c88 (diff) | |
download | bcm5719-llvm-3852b2ce7eb0cbdbc0191c8738646197af4f5e47.tar.gz bcm5719-llvm-3852b2ce7eb0cbdbc0191c8738646197af4f5e47.zip |
jmp_bufs are this big on alpha.
llvm-svn: 30107
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaISelLowering.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaISelLowering.cpp b/llvm/lib/Target/Alpha/AlphaISelLowering.cpp index 9c44f5555fe..fde5801f5d4 100644 --- a/llvm/lib/Target/Alpha/AlphaISelLowering.cpp +++ b/llvm/lib/Target/Alpha/AlphaISelLowering.cpp @@ -135,6 +135,9 @@ AlphaTargetLowering::AlphaTargetLowering(TargetMachine &TM) : TargetLowering(TM) addLegalFPImmediate(+0.0); //F31 addLegalFPImmediate(-0.0); //-F31 + setJumpBufSize(272); + setJumpBufAlignment(16); + computeRegisterProperties(); useITOF = TM.getSubtarget<AlphaSubtarget>().hasF2I(); |