Revision: 23279
Author:   [email protected]
Date:     Thu Aug 21 13:50:13 2014 UTC
Log:      Fix unused-variable error on release builds.

[email protected]

Review URL: https://codereview.chromium.org/466333006
http://code.google.com/p/v8/source/detail?r=23279

Modified:
 /branches/bleeding_edge/src/arm/assembler-arm.cc

=======================================
--- /branches/bleeding_edge/src/arm/assembler-arm.cc Thu Aug 21 13:26:47 2014 UTC +++ /branches/bleeding_edge/src/arm/assembler-arm.cc Thu Aug 21 13:50:13 2014 UTC
@@ -3176,6 +3176,7 @@
   uint32_t immed_8 = 0;
   bool immed_fits = fits_shifter(immed, &rotate_imm, &immed_8, NULL);
   DCHECK(immed_fits);
+  USE(immed_fits);
   return (instr & ~kOff12Mask) | (rotate_imm << 8) | immed_8;
 }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to