diff options
author | Duncan Sands <baldrick@free.fr> | 2007-07-27 12:58:54 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2007-07-27 12:58:54 +0000 |
commit | 644f9173582f44b6293c7fadda5dc7e2bd5d5dfc (patch) | |
tree | 0f5f70a5ad5be8037ebccc348157059f648cba1a /llvm/lib/Target/Alpha/AlphaISelLowering.cpp | |
parent | 14bbb15f07d7910fdac2e19887aac85fec86aafd (diff) | |
download | bcm5719-llvm-644f9173582f44b6293c7fadda5dc7e2bd5d5dfc.tar.gz bcm5719-llvm-644f9173582f44b6293c7fadda5dc7e2bd5d5dfc.zip |
Support for trampolines, except for X86 codegen which is
still under discussion.
llvm-svn: 40549
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaISelLowering.cpp')
-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 d4777b2c5f4..adbf322dade 100644 --- a/llvm/lib/Target/Alpha/AlphaISelLowering.cpp +++ b/llvm/lib/Target/Alpha/AlphaISelLowering.cpp @@ -124,6 +124,9 @@ AlphaTargetLowering::AlphaTargetLowering(TargetMachine &TM) : TargetLowering(TM) setOperationAction(ISD::ExternalSymbol, MVT::i64, Custom); setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom); + setOperationAction(ISD::ADJUST_TRAMP, MVT::i32, Expand); + setOperationAction(ISD::ADJUST_TRAMP, MVT::i64, Expand); + setOperationAction(ISD::VASTART, MVT::Other, Custom); setOperationAction(ISD::VAEND, MVT::Other, Expand); setOperationAction(ISD::VACOPY, MVT::Other, Custom); |