mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Use attribute query methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165210 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b44e3ee1a7
commit
5d0061e025
@ -1319,9 +1319,9 @@ public:
|
||||
FunctionType *FTy, bool isTailCall, SDValue callee,
|
||||
ArgListTy &args, SelectionDAG &dag, DebugLoc dl,
|
||||
ImmutableCallSite &cs)
|
||||
: Chain(chain), RetTy(retTy), RetSExt(cs.paramHasAttr(0, Attribute::SExt)),
|
||||
RetZExt(cs.paramHasAttr(0, Attribute::ZExt)), IsVarArg(FTy->isVarArg()),
|
||||
IsInReg(cs.paramHasAttr(0, Attribute::InReg)),
|
||||
: Chain(chain), RetTy(retTy), RetSExt(cs.paramHasSExtAttr(0)),
|
||||
RetZExt(cs.paramHasZExtAttr(0)), IsVarArg(FTy->isVarArg()),
|
||||
IsInReg(cs.paramHasInRegAttr(0)),
|
||||
DoesNotReturn(cs.doesNotReturn()),
|
||||
IsReturnValueUsed(!cs.getInstruction()->use_empty()),
|
||||
IsTailCall(isTailCall), NumFixedArgs(FTy->getNumParams()),
|
||||
|
Loading…
x
Reference in New Issue
Block a user