llvm-6502/lib/AsmParser
Reid Spencer 5b7e753d95 Fix PR902:
Errors are generated with the YYERROR macro which can only be called from
a production (inside yyparse) because of the goto statement in the macro.
This lead to several situations where GEN_ERROR was not called but
GenerateError was used instead (because it doesn't use YYERROR). However,
in such situations, catching the error much later (e.g. at the end of
the production) is not sufficient because LLVM can assert on invalid data
before the end of the production is reached. The solution is to ensure that
the CHECK_FOR_ERROR macro (which invokes YYERROR if there's an error) is
used as soon as possible after a call to GenerateError has been made.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30650 91177308-0d34-0410-b5e6-96231b3b80d8
2006-09-28 19:28:24 +00:00
..
.cvsignore Add new generated files. 2006-03-23 23:48:12 +00:00
Lexer.cpp.cvs Added some eye-candy for Subtarget type checking 2006-09-17 20:25:45 +00:00
Lexer.l Added some eye-candy for Subtarget type checking 2006-09-17 20:25:45 +00:00
Lexer.l.cvs Added some eye-candy for Subtarget type checking 2006-09-17 20:25:45 +00:00
llvmAsmParser.cpp.cvs Fix PR902: 2006-09-28 19:28:24 +00:00
llvmAsmParser.h.cvs Fix PR902: 2006-09-28 19:28:24 +00:00
llvmAsmParser.y Fix PR902: 2006-09-28 19:28:24 +00:00
llvmAsmParser.y.cvs Fix PR902: 2006-09-28 19:28:24 +00:00
Makefile For PR797: 2006-08-18 09:30:03 +00:00
Parser.cpp For PR797: 2006-08-18 08:43:06 +00:00
ParserInternals.h For PR797: 2006-08-18 08:43:06 +00:00