search for: exprend

Displaying 1 result from an estimated 1 matches for "exprend".

Did you mean: expend
2010 Jun 21
2
[LLVMdev] MC: Object file specific parsing
...9; and see what is // after it. - const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext()); - if (getLexer().isNot(AsmToken::LParen)) { + const MCExpr *Disp = MCConstantExpr::Create(0, Parser->getContext()); + if (Parser->getLexer().isNot(AsmToken::LParen)) { SMLoc ExprEnd; - if (getParser().ParseExpression(Disp, ExprEnd)) return 0; + if (Parser->ParseExpression(Disp, ExprEnd)) return 0; // After parsing the base expression we could either have a parenthesized // memory address or not. If not, return now. If so, eat the (. - if (getLexer...