aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetLowering.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2007-08-20 15:18:24 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2007-08-20 15:18:24 +0000
commit21485be444bd132941faf4e5653ac34b3ec74040 (patch)
tree7314e95702a75eef525af3450134d4d353125fb6 /include/llvm/Target/TargetLowering.h
parentcf8ba696b32fe46d874ac83c1e1c7ab9ad0f18da (diff)
downloadexternal_llvm-21485be444bd132941faf4e5653ac34b3ec74040.zip
external_llvm-21485be444bd132941faf4e5653ac34b3ec74040.tar.gz
external_llvm-21485be444bd132941faf4e5653ac34b3ec74040.tar.bz2
Partial implementation of calling functions with byval arguments:
*) The needed information is propagated to the DAG *) The X86-64 backend detects it and aborts git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41179 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLowering.h')
-rw-r--r--include/llvm/Target/TargetLowering.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index e44f741..510dd6e 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -841,9 +841,10 @@ public:
bool isInReg;
bool isSRet;
bool isNest;
+ bool isByVal;
ArgListEntry() : isSExt(false), isZExt(false), isInReg(false),
- isSRet(false), isNest(false) { };
+ isSRet(false), isNest(false), isByVal(false) { };
};
typedef std::vector<ArgListEntry> ArgListTy;
virtual std::pair<SDOperand, SDOperand>