From ff56f416a5f0fecc7c996efd1e903fd36afe8bee Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 30 Apr 2014 12:42:22 +0000 Subject: [PATCH] Grammar fix. Thanks to Saleem Abdulrasool for noticing it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207643 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/MC/MCAssembler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MC/MCAssembler.cpp b/lib/MC/MCAssembler.cpp index ba10500c951..a96e4ba1514 100644 --- a/lib/MC/MCAssembler.cpp +++ b/lib/MC/MCAssembler.cpp @@ -332,7 +332,7 @@ bool MCAssembler::isThumbFunc(const MCSymbol *Symbol) const { if (!Symbol->isVariable()) return false; - // FIXME: It looks like gas support some cases of the form "foo + 2". It + // FIXME: It looks like gas supports some cases of the form "foo + 2". It // is not clear if that is a bug or a feature. const MCExpr *Expr = Symbol->getVariableValue(); const MCSymbolRefExpr *Ref = dyn_cast(Expr); -- 2.34.1