diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-25 23:00:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-25 23:00:45 +0000 |
commit | 8df99b523eec53b3e9900fba93ff1e808581a11f (patch) | |
tree | a2f4789e6306b915ad5eb531996b57fce01eaa34 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 61703c96f209990e91d91067cd68b8ba63748fce (diff) | |
download | bcm5719-llvm-8df99b523eec53b3e9900fba93ff1e808581a11f.tar.gz bcm5719-llvm-8df99b523eec53b3e9900fba93ff1e808581a11f.zip |
remove some llvmcontext arguments that are now dead post-refactoring.
llvm-svn: 112104
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 077fd1dadd1..b74f600cfa2 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -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; |