aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCStreamer.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-05-21 22:39:11 +0000
committerEric Christopher <echristo@apple.com>2010-05-21 22:39:11 +0000
commit0df4a80e2063424929bbfaa61dd7973062218ad4 (patch)
tree6974b3e08d9a9d1a570c1407be2882bc0d2cf0b6 /include/llvm/MC/MCStreamer.h
parent299f424f44eaa7e1a2cef6309a3298477747d2fd (diff)
downloadexternal_llvm-0df4a80e2063424929bbfaa61dd7973062218ad4.zip
external_llvm-0df4a80e2063424929bbfaa61dd7973062218ad4.tar.gz
external_llvm-0df4a80e2063424929bbfaa61dd7973062218ad4.tar.bz2
Fix comment and whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104392 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCStreamer.h')
-rw-r--r--include/llvm/MC/MCStreamer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index 389b1e9..e69270c 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -178,7 +178,7 @@ namespace llvm {
/// @param Size - The size of the common symbol.
virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) = 0;
- /// EmitZerofill - Emit a the zerofill section and an option symbol.
+ /// EmitZerofill - Emit the zerofill section and an optional symbol.
///
/// @param Section - The zerofill section to create and or to put the symbol
/// @param Symbol - The zerofill symbol to emit, if non-NULL.
@@ -196,7 +196,7 @@ namespace llvm {
/// @param ByteAlignment - The alignment of the thread local common symbol
/// if non-zero. This must be a power of 2 on some targets.
virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
- uint64_t Size, unsigned ByteAlignment = 0) = 0;
+ uint64_t Size, unsigned ByteAlignment = 0) = 0;
/// @}
/// @name Generating Data
/// @{