diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-07-19 00:00:58 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-07-19 00:00:58 +0000 |
commit | 7d36534d2235c6969b6f51c1f20ac1413f54eb67 (patch) | |
tree | 9c73d14ff2809675526a7c5d4aec393bb7473c00 /lib/CodeGen/MachineModuleInfo.cpp | |
parent | c872143d6aad7ac078e69cf611d6d8c0fe723ba6 (diff) |
Rename CompactEncoding to CompactUnwindEncoding.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135448 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineModuleInfo.cpp')
-rw-r--r-- | lib/CodeGen/MachineModuleInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineModuleInfo.cpp b/lib/CodeGen/MachineModuleInfo.cpp index 652d2078ce..33a3c6ec3f 100644 --- a/lib/CodeGen/MachineModuleInfo.cpp +++ b/lib/CodeGen/MachineModuleInfo.cpp @@ -257,7 +257,7 @@ MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI, const MCRegisterInfo &MRI, const TargetAsmInfo *TAI) : ImmutablePass(ID), Context(MAI, MRI, TAI), - ObjFileMMI(0), CompactEncoding(0), CurCallSite(0), CallsEHReturn(0), + ObjFileMMI(0), CompactUnwindEncoding(0), CurCallSite(0), CallsEHReturn(0), CallsUnwindInit(0), DbgInfoAvailable(false), CallsExternalVAFunctionWithFloatingPointArguments(false) { initializeMachineModuleInfoPass(*PassRegistry::getPassRegistry()); @@ -312,7 +312,7 @@ void MachineModuleInfo::EndFunction() { FilterEnds.clear(); CallsEHReturn = 0; CallsUnwindInit = 0; - CompactEncoding = 0; + CompactUnwindEncoding = 0; VariableDbgInfo.clear(); } |