mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Oops, accidentally broke reading from stdin when doing command line arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1026 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b82f5e7c00
commit
aa7420b35b
@ -24,7 +24,7 @@ cl::Flag ProfileMode ("profile", "Enable Profiling [unimp]");
|
||||
Interpreter::Interpreter() : ExitCode(0), Profile(ProfileMode),
|
||||
Trace(TraceMode), CurFrame(-1) {
|
||||
CurMod = 0;
|
||||
loadModule(InputArgv.size() ? InputArgv[0] : "");
|
||||
loadModule(InputArgv.size() ? InputArgv[0] : "-");
|
||||
|
||||
// Initialize the "backend"
|
||||
initializeExecutionEngine();
|
||||
|
Loading…
Reference in New Issue
Block a user