From 8bba1a5ef0f8a71de2e58c7f05b8714a73464ca8 Mon Sep 17 00:00:00 2001 From: Bruno Cardoso Lopes Date: Fri, 18 Feb 2011 19:49:06 +0000 Subject: [PATCH] Fix style and a typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125949 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); -- 2.34.1