summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-05-14 01:38:54 +0000
committerEric Christopher <echristo@apple.com>2010-05-14 01:38:54 +0000
commitbc81885ff7a456ca4f9ee1ba967fbd2b02923b96 (patch)
treed10fe9c1c71bb36775ffd0e87999bc0ec9372260 /llvm/lib/MC
parentfbc1a7654630806b83a7090772dd25a8f5be63d4 (diff)
downloadbcm5719-llvm-bc81885ff7a456ca4f9ee1ba967fbd2b02923b96.tar.gz
bcm5719-llvm-bc81885ff7a456ca4f9ee1ba967fbd2b02923b96.zip
Fix a couple of typos.
llvm-svn: 103756
Diffstat (limited to 'llvm/lib/MC')
-rw-r--r--llvm/lib/MC/MCParser/AsmParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCParser/AsmParser.cpp b/llvm/lib/MC/MCParser/AsmParser.cpp
index d47273c1319..fe2164cfd88 100644
--- a/llvm/lib/MC/MCParser/AsmParser.cpp
+++ b/llvm/lib/MC/MCParser/AsmParser.cpp
@@ -1316,7 +1316,7 @@ bool AsmParser::ParseDirectiveComm(bool IsLocal) {
return Error(SizeLoc, "invalid '.comm' or '.lcomm' directive size, can't "
"be less than zero");
- // NOTE: The alignment in the directive is a power of 2 value, the assember
+ // NOTE: The alignment in the directive is a power of 2 value, the assembler
// may internally end up wanting an alignment in bytes.
// FIXME: Diagnose overflow.
if (Pow2Alignment < 0)
@@ -1406,7 +1406,7 @@ bool AsmParser::ParseDirectiveDarwinZerofill() {
return Error(SizeLoc, "invalid '.zerofill' directive size, can't be less "
"than zero");
- // NOTE: The alignment in the directive is a power of 2 value, the assember
+ // NOTE: The alignment in the directive is a power of 2 value, the assembler
// may internally end up wanting an alignment in bytes.
// FIXME: Diagnose overflow.
if (Pow2Alignment < 0)
OpenPOWER on IntegriCloud