diff options
author | David Robillard <d@drobilla.net> | 2012-10-15 20:08:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-10-15 20:08:52 +0000 |
commit | 60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d (patch) | |
tree | 42ab3460523da85011a448f74c6f430888942df9 /src/repl.cpp | |
parent | 7bdf853545a3d1bcaf7ae028a0409007862c3382 (diff) | |
download | resp-60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d.tar.gz resp-60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d.tar.bz2 resp-60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d.zip |
Update for LLVM 3.1
git-svn-id: http://svn.drobilla.net/resp/trunk@433 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/repl.cpp')
-rw-r--r-- | src/repl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repl.cpp b/src/repl.cpp index b457e06..4e9c44c 100644 --- a/src/repl.cpp +++ b/src/repl.cpp @@ -166,7 +166,7 @@ eval(CEnv& cenv, Cursor& cursor, istream& is, bool execute) } Code defs; - bool hasMain; + bool hasMain = false; const AST* retT = compile(cenv, parsed, defs, hasMain, "main"); if (cenv.args.find("-F") != cenv.args.end()) { dump(cenv, defs); |