aboutsummaryrefslogtreecommitdiffstats
path: root/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
commitfff5fa93eeb1de1ab13f98e55b7ee5f00007af19 (patch)
tree291ca3a63c1aecf9162c5564df846fb4cc098b76 /lib/MC
parentf0d6ae8ae1eac726ff51eef953fb80a8a74905dc (diff)
downloadexternal_llvm-fff5fa93eeb1de1ab13f98e55b7ee5f00007af19.zip
external_llvm-fff5fa93eeb1de1ab13f98e55b7ee5f00007af19.tar.gz
external_llvm-fff5fa93eeb1de1ab13f98e55b7ee5f00007af19.tar.bz2
Fix a couple of typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103756 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC')
-rw-r--r--lib/MC/MCParser/AsmParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/MC/MCParser/AsmParser.cpp b/lib/MC/MCParser/AsmParser.cpp
index d47273c..fe2164c 100644
--- a/lib/MC/MCParser/AsmParser.cpp
+++ b/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)