diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-28 05:48:22 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-28 05:48:22 +0000 |
commit | 8751b94ffbd9c49df8949a37f78d6bd0be87b256 (patch) | |
tree | 0227807dd033d24e38cc2cb114ad2e62ed1e98e0 /include | |
parent | 6c31b0575c3ce9f67ed6cd371216556893707af8 (diff) |
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')
-rw-r--r-- | include/llvm/MC/MCStreamer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h index c49f2582d0..f4545bef22 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; /// @} |