| Index: runtime/vm/simulator_mips.cc
|
| ===================================================================
|
| --- runtime/vm/simulator_mips.cc (revision 21785)
|
| +++ runtime/vm/simulator_mips.cc (working copy)
|
| @@ -184,7 +184,7 @@
|
| *value = sim_->get_register(reg);
|
| return true;
|
| }
|
| - if ((desc[0] == '*')) {
|
| + if (desc[0] == '*') {
|
| uint32_t addr;
|
| if (GetValue(desc + 1, &addr)) {
|
| if (Simulator::IsIllegalAddress(addr)) {
|
| @@ -212,7 +212,7 @@
|
| *value = sim_->get_fregister(freg);
|
| return true;
|
| }
|
| - if ((desc[0] == '*')) {
|
| + if (desc[0] == '*') {
|
| uint32_t addr;
|
| if (GetValue(desc + 1, &addr)) {
|
| if (Simulator::IsIllegalAddress(addr)) {
|
|
|