v8/src/ia32
ulan@chromium.org 3c864d3e79 Fix warnings about tautological compares by recent Clang versions.
This fixes the following Clang warnings:

../../v8/src/ia32/assembler-ia32.cc:1504:24: warning: comparison of constant 16 with expression of type 'v8::internal::Condition' is always true [-Wtautological-constant-out-of-range-compare]
  ASSERT(0 <= cc && cc < 16);
  ~~~~~~~~~~~~~~~~~~~~~^~~~~

../../v8/src/ia32/assembler-ia32.cc:1536:27: warning: comparison of constant 16 with expression of type 'v8::internal::Condition' is always true [-Wtautological-constant-out-of-range-compare]
  ASSERT((0 <= cc) && (cc < 16));
  ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~

BUG=crbug.com/151927

Review URL: https://chromiumcodereview.appspot.com/11225030
Patch from Hans Wennborg <hans@chromium.org>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12792 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2012-10-22 15:59:58 +00:00
..
assembler-ia32-inl.h Use movw/movt instead of constant pool on ARMv7. 2012-10-18 12:21:42 +00:00
assembler-ia32.cc Fix warnings about tautological compares by recent Clang versions. 2012-10-22 15:59:58 +00:00
assembler-ia32.h Use movw/movt instead of constant pool on ARMv7. 2012-10-18 12:21:42 +00:00
builtins-ia32.cc Rename Context::global to Context::global_object, 2012-08-17 12:59:00 +00:00
code-stubs-ia32.cc Ensure that we do not accidentally emit debug code. 2012-10-12 11:09:14 +00:00
code-stubs-ia32.h Reland r10908 (Ensure consistent result of transcendental function0.) 2012-03-05 08:17:16 +00:00
codegen-ia32.cc Implement tracking and optimizations of packed arrays 2012-05-23 14:24:29 +00:00
codegen-ia32.h Porting r10023 and r10054 to x64 (pointer cache for external strings). 2011-11-24 10:16:39 +00:00
cpu-ia32.cc Cosmetic changes ("set up" is a verb, "setup" is a noun). 2012-01-13 13:09:52 +00:00
debug-ia32.cc Fix issue 825 (LiveEdit vs. function with no locals) for x64. 2012-05-16 21:15:24 +00:00
deoptimizer-ia32.cc Speed up function deoptimization by avoiding quadratic pass over optimized function list. 2012-10-22 09:48:56 +00:00
disasm-ia32.cc Fixed minus zero test (fixes v8:2133). 2012-09-19 12:48:49 +00:00
frames-ia32.cc Enhance SafeStackFrameIterator to avoid triggering assertions in debug mode. 2010-09-16 08:23:34 +00:00
frames-ia32.h Reimplement dynamic frame alignment for frames that are compiled via OSR or have more than 2 double spill slots. 2012-06-12 10:22:33 +00:00
full-codegen-ia32.cc Ensure that we do not accidentally emit debug code. 2012-10-12 11:09:14 +00:00
ic-ia32.cc x64 and ARM: Fix issue 2346 (order of operations in keyed store 2012-09-25 13:35:42 +00:00
lithium-codegen-ia32.cc Consistently make the bounds check for AccessArgumentsAt explicit. 2012-10-15 07:25:20 +00:00
lithium-codegen-ia32.h Fix arguments object materialization during deopt. 2012-09-12 12:28:42 +00:00
lithium-gap-resolver-ia32.cc Remove TLS access for current Zone. 2012-06-11 12:42:31 +00:00
lithium-gap-resolver-ia32.h Move LOperand class to lithium.h and move implementations out of .h into .cc files. 2011-01-19 13:55:56 +00:00
lithium-ia32.cc Improve ClampDoubleToUint8 on ia32/x64. 2012-10-19 13:20:22 +00:00
lithium-ia32.h Consistently use named getters for Lithium operands on ia32. 2012-09-14 11:55:49 +00:00
macro-assembler-ia32.cc Improve ClampDoubleToUint8 on ia32/x64. 2012-10-19 13:20:22 +00:00
macro-assembler-ia32.h Ensure that we do not accidentally emit debug code. 2012-10-12 11:09:14 +00:00
regexp-macro-assembler-ia32.cc Add missing string length check in regexp engine. 2012-06-14 13:59:48 +00:00
regexp-macro-assembler-ia32.h Unbreak interpreted regexp. 2012-06-14 17:06:16 +00:00
simulator-ia32.cc Move backend specific files to separate directories. 2009-04-23 12:06:38 +00:00
simulator-ia32.h Implement loop for global regexps in regexp assembler. 2012-05-22 14:05:44 +00:00
stub-cache-ia32.cc Fixed deoptimization of inlined getters. 2012-09-07 09:01:54 +00:00