diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-07-13 19:03:36 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-07-13 19:03:36 +0000 |
commit | 3f3cefd39283424765bf537edd027443f4c3b34d (patch) | |
tree | 2a41cea1816a240010fcdd0c81b98559deb04ef8 /llvm/lib/MC/MCDwarf.cpp | |
parent | 10a84047715fb79a2bb10d3e4f4cececf4ebfa80 (diff) | |
download | bcm5719-llvm-3f3cefd39283424765bf537edd027443f4c3b34d.tar.gz bcm5719-llvm-3f3cefd39283424765bf537edd027443f4c3b34d.zip |
MC: make DWARF and Windows unwinding handling more similar
Rename member variables and functions for the MCStreamer for DWARF-like
unwinding management. Rename the Windows ones as well and make the naming and
handling similar across the two. No functional change intended.
llvm-svn: 212912
Diffstat (limited to 'llvm/lib/MC/MCDwarf.cpp')
-rw-r--r-- | llvm/lib/MC/MCDwarf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCDwarf.cpp b/llvm/lib/MC/MCDwarf.cpp index 0a3fab8c455..54cef1f786d 100644 --- a/llvm/lib/MC/MCDwarf.cpp +++ b/llvm/lib/MC/MCDwarf.cpp @@ -1574,7 +1574,7 @@ void MCDwarfFrameEmitter::Emit(MCObjectStreamer &Streamer, MCAsmBackend *MAB, MCContext &Context = Streamer.getContext(); const MCObjectFileInfo *MOFI = Context.getObjectFileInfo(); FrameEmitterImpl Emitter(IsEH); - ArrayRef<MCDwarfFrameInfo> FrameArray = Streamer.getFrameInfos(); + ArrayRef<MCDwarfFrameInfo> FrameArray = Streamer.getDwarfFrameInfos(); // Emit the compact unwind info if available. bool NeedsEHFrameSection = !MOFI->getSupportsCompactUnwindWithoutEHFrame(); |