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
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index 798c500..7f4ef1d 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -24,7 +24,7 @@
 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();