aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetLowering.h
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2007-03-07 16:25:09 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2007-03-07 16:25:09 +0000
commitd0b82b301d700217a716526f9329bb031e0d6578 (patch)
treefffc3171424b94fce8316c50e47fdbc6c8cfdb1f /include/llvm/Target/TargetLowering.h
parent6a143590b3e283321af981abc4336f35efea2fed (diff)
downloadexternal_llvm-d0b82b301d700217a716526f9329bb031e0d6578.zip
external_llvm-d0b82b301d700217a716526f9329bb031e0d6578.tar.gz
external_llvm-d0b82b301d700217a716526f9329bb031e0d6578.tar.bz2
Refactoring of formal parameter flags. Enable properly use of
zext/sext/aext stuff. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35008 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLowering.h')
-rw-r--r--include/llvm/Target/TargetLowering.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 5aae258..fa67e0c 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -765,11 +765,12 @@ public:
struct ArgListEntry {
SDOperand Node;
const Type* Ty;
- bool isSigned;
+ bool isSExt;
+ bool isZExt;
bool isInReg;
bool isSRet;
- ArgListEntry():isSigned(false), isInReg(false), isSRet(false) { };
+ ArgListEntry():isSExt(false), isZExt(false), isInReg(false), isSRet(false) { };
};
typedef std::vector<ArgListEntry> ArgListTy;
virtual std::pair<SDOperand, SDOperand>