From 7d36534d2235c6969b6f51c1f20ac1413f54eb67 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 19 Jul 2011 00:00:58 +0000 Subject: Rename CompactEncoding to CompactUnwindEncoding. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135448 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineModuleInfo.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/llvm/CodeGen/MachineModuleInfo.h') diff --git a/include/llvm/CodeGen/MachineModuleInfo.h b/include/llvm/CodeGen/MachineModuleInfo.h index 96f8259..071c649 100644 --- a/include/llvm/CodeGen/MachineModuleInfo.h +++ b/include/llvm/CodeGen/MachineModuleInfo.h @@ -111,9 +111,9 @@ class MachineModuleInfo : public ImmutablePass { // frame maps by debug and exception handling consumers. std::vector FrameMoves; - // CompactEncoding - If the target supports it, this is the compact unwind - // encoding. It replaces a function's CIE and FDE. - uint32_t CompactEncoding; + // CompactUnwindEncoding - If the target supports it, this is the compact + // unwind encoding. It replaces a function's CIE and FDE. + uint32_t CompactUnwindEncoding; // LandingPads - List of LandingPadInfo describing the landing pad information // in the current function. @@ -234,10 +234,10 @@ public: /// handling comsumers. std::vector &getFrameMoves() { return FrameMoves; } - /// getCompactEncoding - Returns the compact unwind encoding for a function if - /// the target supports the encoding. This encoding replaces a function's CIE - /// and FDE. - uint32_t getCompactEncoding() const { return CompactEncoding; } + /// getCompactUnwindEncoding - Returns the compact unwind encoding for a + /// function if the target supports the encoding. This encoding replaces a + /// function's CIE and FDE. + uint32_t getCompactUnwindEncoding() const { return CompactUnwindEncoding; } /// getAddrLabelSymbol - Return the symbol to be used for the specified basic /// block when its address is taken. This cannot be its normal LBB label -- cgit v1.1