aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCStreamer.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-08-28 05:48:22 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-08-28 05:48:22 +0000
commit15f1a5cc63c5f08b31c8a67884efd2604067711e (patch)
tree0227807dd033d24e38cc2cb114ad2e62ed1e98e0 /include/llvm/MC/MCStreamer.h
parentb6eff3bcb6f481500df60e028ceaff6b60336a1d (diff)
downloadexternal_llvm-15f1a5cc63c5f08b31c8a67884efd2604067711e.zip
external_llvm-15f1a5cc63c5f08b31c8a67884efd2604067711e.tar.gz
external_llvm-15f1a5cc63c5f08b31c8a67884efd2604067711e.tar.bz2
llvm-mc: Add const to EmitZeroFill section argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80341 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCStreamer.h')
-rw-r--r--include/llvm/MC/MCStreamer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index c49f258..f4545be 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -164,7 +164,7 @@ namespace llvm {
/// @param Symbol - The zerofill symbol to emit, if non-NULL.
/// @param Size - The size of the zerofill symbol.
/// @param Pow2Alignment - The alignment of the zerofill symbol if non-zero.
- virtual void EmitZerofill(MCSection *Section, MCSymbol *Symbol = 0,
+ virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
unsigned Size = 0,unsigned Pow2Alignment = 0) = 0;
/// @}