summaryrefslogtreecommitdiffstats
path: root/llvm/include
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-07-19 00:00:58 +0000
committerBill Wendling <isanbard@gmail.com>2011-07-19 00:00:58 +0000
commit6969ed628620d34dac37b597df90d036ee636db5 (patch)
tree6df2d0de490c00867fd0bf1f9c9dc68f47a3a818 /llvm/include
parent67bc18552a453e10f44bf3d0d2a9b5841a460131 (diff)
downloadbcm5719-llvm-6969ed628620d34dac37b597df90d036ee636db5.tar.gz
bcm5719-llvm-6969ed628620d34dac37b597df90d036ee636db5.zip
Rename CompactEncoding to CompactUnwindEncoding.
llvm-svn: 135448
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/llvm/CodeGen/MachineModuleInfo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineModuleInfo.h b/llvm/include/llvm/CodeGen/MachineModuleInfo.h
index 96f82599161..071c649a3ad 100644
--- a/llvm/include/llvm/CodeGen/MachineModuleInfo.h
+++ b/llvm/include/llvm/CodeGen/MachineModuleInfo.h
@@ -111,9 +111,9 @@ class MachineModuleInfo : public ImmutablePass {
// frame maps by debug and exception handling consumers.
std::vector<MachineMove> 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<MachineMove> &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
OpenPOWER on IntegriCloud