Commit 9a80637b authored by yangguo@chromium.org's avatar yangguo@chromium.org

Fix GCC 4.6 build.

R=jkummerow@chromium.org
BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/10541137

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11788 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 9786db79
......@@ -16785,7 +16785,7 @@ TEST(TryFinallyMessage) {
" var x = 0; \n"
" x++; \n" // Trigger an IC initialization here.
"} \n";
Local<Value> result = CompileRun(trigger_ic);
CompileRun(trigger_ic);
CHECK(try_catch.HasCaught());
Local<Message> message = try_catch.Message();
CHECK(!message.IsEmpty());
......@@ -16804,7 +16804,7 @@ TEST(TryFinallyMessage) {
" x++; \n"
" throw new Error('again'); \n" // This is the new uncaught error.
"} \n";
Local<Value> result = CompileRun(throw_again);
CompileRun(throw_again);
CHECK(try_catch.HasCaught());
Local<Message> message = try_catch.Message();
CHECK(!message.IsEmpty());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment