MipsAsmParser.cpp: fix VS2012 build

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218991 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Hans Wennborg 2014-10-03 17:16:24 +00:00
parent 8651aece06
commit d8af735ca7

View File

@ -1628,7 +1628,7 @@ void
MipsAsmParser::printWarningWithFixIt(const Twine &Msg, const Twine &FixMsg,
SMRange Range, bool ShowColors) {
getSourceManager().PrintMessage(Range.Start, SourceMgr::DK_Warning, Msg,
{ Range }, { SMFixIt(Range, FixMsg) },
Range, SMFixIt(Range, FixMsg),
ShowColors);
}