From 3b0e05b7394f2ae8e2237f2452c5d9de65830ffe Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Mon, 2 Jun 2008 08:13:20 -0600 Subject: [PATCH] fix unused parameter warning --- src/x86.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x86.cpp b/src/x86.cpp index 07a2ea5ab7..8f0e05eab4 100644 --- a/src/x86.cpp +++ b/src/x86.cpp @@ -301,7 +301,7 @@ void callR(Context*, unsigned, Assembler::Register*); void -callC(Context* c, unsigned size, Assembler::Constant* a) +callC(Context* c, unsigned size UNUSED, Assembler::Constant* a) { assert(c, size == BytesPerWord); @@ -360,7 +360,7 @@ jumpR(Context* c, unsigned size UNUSED, Assembler::Register* a) } void -jumpC(Context* c, unsigned size, Assembler::Constant* a) +jumpC(Context* c, unsigned size UNUSED, Assembler::Constant* a) { assert(c, size == BytesPerWord);