mbeddr / mbeddr.core

The mbeddr core. An extensible C
Eclipse Public License 2.0
224 stars 77 forks source link

Right transformation broken for -> #29

Closed bkolb closed 12 years ago

bkolb commented 12 years ago

I have something like this phase->metrology.V_history[phase]

now I want to add a -> after the phase in the array access

the result is phase[]->

markusvoelter commented 12 years ago

workaround: phase->metrology.V_history[(*phase).active_energy_counter]

markusvoelter commented 12 years ago

The prioutil shuffle thingy is what breaks it. If you uncomment that, it works.

markusvoelter commented 12 years ago

I don't understand the logic in PrioUtil, so I cannot fix this bug. Marcel maybe?

markusvoelter commented 12 years ago

fixed. the arrow had no prio level specicfied.