aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetLowering.h
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2007-07-27 12:58:54 +0000
committerDuncan Sands <baldrick@free.fr>2007-07-27 12:58:54 +0000
commit36397f50343639ce9a25996f2d790c656791ab92 (patch)
treea43e609dd0de1b138d3245ac390527372b3f591c /include/llvm/Target/TargetLowering.h
parentada779fb11eb411536aa8219a176ca0ce4d58fd1 (diff)
downloadexternal_llvm-36397f50343639ce9a25996f2d790c656791ab92.zip
external_llvm-36397f50343639ce9a25996f2d790c656791ab92.tar.gz
external_llvm-36397f50343639ce9a25996f2d790c656791ab92.tar.bz2
Support for trampolines, except for X86 codegen which is
still under discussion. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40549 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLowering.h')
-rw-r--r--include/llvm/Target/TargetLowering.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index a95a03b..a1aa50c 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -812,8 +812,10 @@ public:
bool isZExt;
bool isInReg;
bool isSRet;
+ bool isNest;
- ArgListEntry():isSExt(false), isZExt(false), isInReg(false), isSRet(false) { };
+ ArgListEntry() : isSExt(false), isZExt(false), isInReg(false),
+ isSRet(false), isNest(false) { };
};
typedef std::vector<ArgListEntry> ArgListTy;
virtual std::pair<SDOperand, SDOperand>