mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 18:24:00 +00:00
remove some llvmcontext arguments that are now dead post-refactoring.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112104 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -100,8 +100,7 @@ public:
|
||||
/// it is already legal or we need to expand it into multiple registers of
|
||||
/// smaller integer type, or we need to promote it to a larger type.
|
||||
LegalizeAction getTypeAction(EVT VT) const {
|
||||
return
|
||||
(LegalizeAction)ValueTypeActions.getTypeAction(*DAG.getContext(), VT);
|
||||
return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
|
||||
}
|
||||
|
||||
/// isTypeLegal - Return true if this type is legal on this target.
|
||||
|
@ -75,7 +75,7 @@ private:
|
||||
|
||||
/// getTypeAction - Return how we should legalize values of this type.
|
||||
LegalizeAction getTypeAction(EVT VT) const {
|
||||
switch (ValueTypeActions.getTypeAction(*DAG.getContext(), VT)) {
|
||||
switch (ValueTypeActions.getTypeAction(VT)) {
|
||||
default:
|
||||
assert(false && "Unknown legalize action!");
|
||||
case TargetLowering::Legal:
|
||||
@ -108,8 +108,7 @@ private:
|
||||
|
||||
/// isTypeLegal - Return true if this type is legal on this target.
|
||||
bool isTypeLegal(EVT VT) const {
|
||||
return (ValueTypeActions.getTypeAction(*DAG.getContext(), VT) ==
|
||||
TargetLowering::Legal);
|
||||
return ValueTypeActions.getTypeAction(VT) == TargetLowering::Legal;
|
||||
}
|
||||
|
||||
/// IgnoreNodeResults - Pretend all of this node's results are legal.
|
||||
|
@ -869,7 +869,7 @@ unsigned TargetLowering::getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
|
||||
// If there is a wider vector type with the same element type as this one,
|
||||
// we should widen to that legal vector type. This handles things like
|
||||
// <2 x float> -> <4 x float>.
|
||||
if (NumElts != 1 && getTypeAction(Context, VT) == Promote) {
|
||||
if (NumElts != 1 && getTypeAction(VT) == Promote) {
|
||||
RegisterVT = getTypeToTransformTo(Context, VT);
|
||||
if (isTypeLegal(RegisterVT)) {
|
||||
IntermediateVT = RegisterVT;
|
||||
|
Reference in New Issue
Block a user