diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-17 05:49:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-17 05:49:08 +0000 |
commit | aa1526419c1c3c01bdbc42ffc7b7488f7bffd69d (patch) | |
tree | f48c6ed95569667abcf09c50145ef207a89763e1 /llvm/lib/MC/MCNullStreamer.cpp | |
parent | aa464002f0f7d43996f10b43a9536a40cb144bef (diff) | |
download | bcm5719-llvm-aa1526419c1c3c01bdbc42ffc7b7488f7bffd69d.tar.gz bcm5719-llvm-aa1526419c1c3c01bdbc42ffc7b7488f7bffd69d.zip |
change AsmPrinter to switch sections using AsmStreamer instead of
doing it directly. This requires const'izing a bunch of stuff that
took sections, but this seems like the right semantic thing to do:
emitting a label to a section shouldn't mutate the MCSection object
itself, for example.
llvm-svn: 79227
Diffstat (limited to 'llvm/lib/MC/MCNullStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCNullStreamer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCNullStreamer.cpp b/llvm/lib/MC/MCNullStreamer.cpp index 3ac79cbf0a2..fcdd087e67a 100644 --- a/llvm/lib/MC/MCNullStreamer.cpp +++ b/llvm/lib/MC/MCNullStreamer.cpp @@ -26,7 +26,7 @@ namespace { /// @name MCStreamer Interface /// @{ - virtual void SwitchSection(MCSection *Section) {} + virtual void SwitchSection(const MCSection *Section) {} virtual void EmitLabel(MCSymbol *Symbol) {} |