https://chromiumcodereview.appspot.com/11087047/diff/4001/src/arm/simulator-arm.cc
File src/arm/simulator-arm.cc (right):

https://chromiumcodereview.appspot.com/11087047/diff/4001/src/arm/simulator-arm.cc#newcode1072
src/arm/simulator-arm.cc:1072: } else if ((addr & 3) == 0) {
Why not fold this into the previous block?

if (FLAG_... || ((addr & 3) == 0)) {
} else {
  // UNIMPLEMENTED();
}

Same for the other functions below.

https://chromiumcodereview.appspot.com/11087047/

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to