[llvm-commits] CVS: llvm/lib/AsmParser/llvmAsmParser.y Lexer.l

Reid Spencer rspencer at reidspencer.com
Sun Oct 22 00:04:51 PDT 2006


On Sat, 2006-10-21 at 23:09 -0700, Chris Lattner wrote:
> >> @@ -1873,6 +1874,11 @@
> >>      free($3);
> >>      CHECK_FOR_ERROR
> >>    };
> >> +  | DATA '=' STRINGCONSTANT {
> >> +    CurModule.CurrentModule->setDataLayout($3);
> >> +    free($3);
> >> +    CHECK_FOR_ERROR
> >
> > I don't think you need a CHECK_FOR_ERROR here. Neither of the two
> > preceding calls will call GENERATE_ERROR.
> 
> Owen/Reid: can one of you take care of this?

Done.




More information about the llvm-commits mailing list