diff options
| author | Owen Anderson <resistor@mac.com> | 2009-07-22 00:24:57 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2009-07-22 00:24:57 +0000 |
| commit | 175b6540352920afd47979cecb8c2667a3f7fdd3 (patch) | |
| tree | 663be741b84470d97945f01da459a3627af683fd /utils | |
| parent | bdb23b3806e83737a67a023a729547caf03fc533 (diff) | |
| download | external_llvm-175b6540352920afd47979cecb8c2667a3f7fdd3.zip external_llvm-175b6540352920afd47979cecb8c2667a3f7fdd3.tar.gz external_llvm-175b6540352920afd47979cecb8c2667a3f7fdd3.tar.bz2 | |
Get rid of the Pass+Context magic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76702 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/TableGen/CallingConvEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/CallingConvEmitter.cpp b/utils/TableGen/CallingConvEmitter.cpp index 0746a2f..82e13dd 100644 --- a/utils/TableGen/CallingConvEmitter.cpp +++ b/utils/TableGen/CallingConvEmitter.cpp @@ -163,12 +163,12 @@ void CallingConvEmitter::EmitAction(Record *Action, O << Size << ", "; else O << "\n" << IndentStr << " State.getTarget().getTargetData()" - "->getTypeAllocSize(LocVT.getTypeForMVT(*State.getContext())), "; + "->getTypeAllocSize(LocVT.getTypeForMVT(State.getContext())), "; if (Align) O << Align; else O << "\n" << IndentStr << " State.getTarget().getTargetData()" - "->getABITypeAlignment(LocVT.getTypeForMVT(*State.getContext()))"; + "->getABITypeAlignment(LocVT.getTypeForMVT(State.getContext()))"; O << ");\n" << IndentStr << "State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset" << Counter << ", LocVT, LocInfo));\n"; |
