forked from OSchip/llvm-project
Oops, accidentally broke reading from stdin when doing command line arguments
llvm-svn: 1026
This commit is contained in:
parent
1711dcbd29
commit
c6503e8a2f
|
@ -24,7 +24,7 @@ cl::Flag ProfileMode ("profile", "Enable Profiling [unimp]");
|
||||||
Interpreter::Interpreter() : ExitCode(0), Profile(ProfileMode),
|
Interpreter::Interpreter() : ExitCode(0), Profile(ProfileMode),
|
||||||
Trace(TraceMode), CurFrame(-1) {
|
Trace(TraceMode), CurFrame(-1) {
|
||||||
CurMod = 0;
|
CurMod = 0;
|
||||||
loadModule(InputArgv.size() ? InputArgv[0] : "");
|
loadModule(InputArgv.size() ? InputArgv[0] : "-");
|
||||||
|
|
||||||
// Initialize the "backend"
|
// Initialize the "backend"
|
||||||
initializeExecutionEngine();
|
initializeExecutionEngine();
|
||||||
|
|
Loading…
Reference in New Issue