search for: idloc

Displaying 2 results from an estimated 2 matches for "idloc".

Did you mean: sdloc
2010 Jun 21
2
[LLVMdev] MC: Object file specific parsing
...pecific ".zerofill" - bool ParseDirectiveDarwinTBSS(); // Darwin specific ".tbss" - - // Darwin specific ".subsections_via_symbols" - bool ParseDirectiveDarwinSubsectionsViaSymbols(); - // Darwin specific .dump and .load - bool ParseDirectiveDarwinDumpOrLoad(SMLoc IDLoc, bool IsDump); bool ParseDirectiveAbort(); // ".abort" bool ParseDirectiveInclude(); // ".include" @@ -159,6 +151,19 @@ private: /// ParseEscapedString - Parse the current token as a string which may include /// escaped characters and return the string contents....
2013 Aug 14
1
[LLVMdev] [PATCH] fix corruption in X86AsmParser
...+0200 +++ llvm-toolchain-3.3-3.3/lib/Target/X86/AsmParser/X86AsmParser.cpp 2013-08-14 16:26:44.721547396 +0200 @@ -2382,8 +2382,10 @@ if (!WasOriginallyInvalidOperand) { ArrayRef<SMRange> Ranges = MatchingInlineAsm ? EmptyRanges : Op->getLocRange(); - return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'", - Ranges, MatchingInlineAsm); + SmallString<126> Msg; + raw_svector_ostream OS(Msg); + OS << "invalid instruction mnemonic '" << Base << "'&quo...