search for: curmodule

Displaying 4 results from an estimated 4 matches for "curmodule".

Did you mean: cur_module
2007 Nov 11
2
[LLVMdev] MSVC 8 Build
...llvmAsmParser.y 1>c:\llvm\lib\AsmParser\llvmAsmParser.y(3124) : error C2065: 'Debug' : undeclared identifier e.g. below. // common code from the two 'RunVMAsmParser' functions static Module* RunParser(Module * M) { llvmAsmlineno = 1; // Reset the current line number... CurModule.CurrentModule = M; #if YYDEBUG yydebug = Debug; #endif // Check to make sure the parser succeeded if (yyparse()) { if (ParserResult) delete ParserResult; return 0; } Cheers, George Russell -------------- next part -------------- An HTML attachment was scrubbed... URL: <h...
2013 Nov 15
0
[LLVMdev] Any objections to my importing GoogleMock to go with GoogleTest in LLVM?
On Thu, Nov 14, 2013 at 6:06 AM, Chandler Carruth <chandlerc at google.com>wrote: > > On Tue, Nov 12, 2013 at 7:24 PM, Sean Silva <silvas at purdue.edu> wrote: > >> Could you maybe give an example or two to whet our testing appetite? > > > It would honestly be simpler for me to write the tests after pulling it in > and point at them. The GoogleMock project
2013 Nov 14
3
[LLVMdev] Any objections to my importing GoogleMock to go with GoogleTest in LLVM?
On Tue, Nov 12, 2013 at 7:24 PM, Sean Silva <silvas at purdue.edu> wrote: > Could you maybe give an example or two to whet our testing appetite? It would honestly be simpler for me to write the tests after pulling it in and point at them. The GoogleMock project has some good examples as well. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Nov 12
0
[LLVMdev] MSVC 8 Build
...AsmParser.y(3124) : error C2065: > 'Debug' : > 1>undeclared identifier > e.g. below. > // common code from the two 'RunVMAsmParser' functions static > Module* RunParser(Module * M) { > > llvmAsmlineno = 1; // Reset the current line number... > CurModule.CurrentModule = M; > #if YYDEBUG > yydebug = Debug; > #endif > > // Check to make sure the parser succeeded > if (yyparse()) { > if (ParserResult) > delete ParserResult; > return 0; > } Please try to fully rebuild the AsmParser project. This wil...