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
This commit is contained in:
yangguo@chromium.org 2014-04-16 11:50:24 +00:00
parent 42c67d5fa2
commit 5e02daca21
2 changed files with 2 additions and 0 deletions

View File

@ -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();

View File

@ -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();