From 2c533c1af0122a48d50718acdda2b24a2f8c1fa5 Mon Sep 17 00:00:00 2001 From: "ager@chromium.org" Date: Fri, 19 Nov 2010 11:24:51 +0000 Subject: [PATCH] Remove unused variable to please Clang. Review URL: http://codereview.chromium.org/5151010 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5861 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/ia32/stub-cache-ia32.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc index 011390c..3120ff9 100644 --- a/src/ia32/stub-cache-ia32.cc +++ b/src/ia32/stub-cache-ia32.cc @@ -1141,9 +1141,8 @@ void StubCompiler::GenerateLoadConstant(JSObject* object, __ j(zero, miss, not_taken); // Check that the maps haven't changed. - Register reg = - CheckPrototypes(object, receiver, holder, - scratch1, scratch2, scratch3, name, miss); + CheckPrototypes(object, receiver, holder, + scratch1, scratch2, scratch3, name, miss); // Return the constant value. __ mov(eax, Handle(value)); -- 2.7.4