diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 7cd0394fdfd..9bde90b1040 100644 --- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -97,11 +97,11 @@ class ARMAsmParser : public TargetAsmParser { OperandMatchResultTy tryParseCoprocRegOperand( SmallVectorImpl&); OperandMatchResultTy tryParseMemBarrierOptOperand( - SmallVectorImpl &); + SmallVectorImpl&); OperandMatchResultTy tryParseProcIFlagsOperand( - SmallVectorImpl &); + SmallVectorImpl&); OperandMatchResultTy tryParseMSRMaskOperand( - SmallVectorImpl &); + SmallVectorImpl&); public: ARMAsmParser(const Target &T, MCAsmParser &_Parser, TargetMachine &_TM) @@ -953,7 +953,7 @@ tryParseMemBarrierOptOperand(SmallVectorImpl &Operands) { return MatchOperand_Success; } -/// ParseProcIFlagsOperand - Try to parse iflags from CPS instruction. +/// tryParseProcIFlagsOperand - Try to parse iflags from CPS instruction. ARMAsmParser::OperandMatchResultTy ARMAsmParser:: tryParseProcIFlagsOperand(SmallVectorImpl &Operands) { SMLoc S = Parser.getTok().getLoc();