diff options
| author | Owen Anderson <resistor@mac.com> | 2009-08-13 21:58:54 +0000 | 
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2009-08-13 21:58:54 +0000 | 
| commit | 55f1c09e31cfc6744fb682e17a2a1a00d914694c (patch) | |
| tree | e753e20c7186dc8138bef58089274bb5162a7cef /llvm/lib/Target/PowerPC | |
| parent | 41a750271b72216801366693bd0f41672892c487 (diff) | |
| download | bcm5719-llvm-55f1c09e31cfc6744fb682e17a2a1a00d914694c.tar.gz bcm5719-llvm-55f1c09e31cfc6744fb682e17a2a1a00d914694c.zip  | |
Push LLVMContexts through the IntegerType APIs.
llvm-svn: 78948
Diffstat (limited to 'llvm/lib/Target/PowerPC')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 11c4093634c..569026fbb7c 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -1269,7 +1269,8 @@ SDValue PPCTargetLowering::LowerTRAMPOLINE(SDValue Op, SelectionDAG &DAG) {    EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();    bool isPPC64 = (PtrVT == MVT::i64);    const Type *IntPtrTy = -    DAG.getTargetLoweringInfo().getTargetData()->getIntPtrType(); +    DAG.getTargetLoweringInfo().getTargetData()->getIntPtrType( +                                                             *DAG.getContext());    TargetLowering::ArgListTy Args;    TargetLowering::ArgListEntry Entry;  | 

