| Index: runtime/vm/simulator_arm.cc
|
| ===================================================================
|
| --- runtime/vm/simulator_arm.cc (revision 21785)
|
| +++ runtime/vm/simulator_arm.cc (working copy)
|
| @@ -196,7 +196,7 @@
|
| }
|
| return true;
|
| }
|
| - if ((desc[0] == '*')) {
|
| + if (desc[0] == '*') {
|
| uint32_t addr;
|
| if (GetValue(desc + 1, &addr)) {
|
| if (Simulator::IsIllegalAddress(addr)) {
|
| @@ -220,7 +220,7 @@
|
| *value = sim_->get_sregister(sreg);
|
| return true;
|
| }
|
| - if ((desc[0] == '*')) {
|
| + if (desc[0] == '*') {
|
| uint32_t addr;
|
| if (GetValue(desc + 1, &addr)) {
|
| if (Simulator::IsIllegalAddress(addr)) {
|
| @@ -240,7 +240,7 @@
|
| *value = sim_->get_dregister(dreg);
|
| return true;
|
| }
|
| - if ((desc[0] == '*')) {
|
| + if (desc[0] == '*') {
|
| uint32_t addr;
|
| if (GetValue(desc + 1, &addr)) {
|
| if (Simulator::IsIllegalAddress(addr)) {
|
|
|