aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-29 14:00:48 +0000
committerChris Lattner <sabre@nondot.org>2001-10-29 14:00:48 +0000
commitaa7420b35b43ad266b19dfc8fee4a1af29069c52 (patch)
tree4702289c3e04f027ccc0a66a5fe7073092cc8aea
parentb82f5e7c0045176161a0389f10e6af533860f18a (diff)
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
-rw-r--r--tools/lli/lli.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index 798c5005f6..7f4ef1d7e7 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -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();