Commit 5e02daca authored by yangguo@chromium.org's avatar yangguo@chromium.org

Fix unused variable warnings.

TBR=jarin@chromium.org

Review URL: https://codereview.chromium.org/238543008

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20797 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 42c67d5f
......@@ -464,6 +464,7 @@ TEST(DisasmIa320) {
assm.GetCode(&desc);
Handle<Code> code = isolate->factory()->NewCode(
desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
USE(code);
#ifdef OBJECT_PRINT
code->Print();
byte* begin = code->instruction_start();
......
......@@ -433,6 +433,7 @@ TEST(DisasmX64) {
assm.GetCode(&desc);
Handle<Code> code = isolate->factory()->NewCode(
desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
USE(code);
#ifdef OBJECT_PRINT
code->Print();
byte* begin = code->instruction_start();
......
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