lowercase modifiers
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 21 Apr 2006 14:38:46 +0000 (14:38 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 21 Apr 2006 14:38:46 +0000 (14:38 +0000)
ir/be/arm/arm_new_nodes.c

index e7e7de6..53afe73 100644 (file)
@@ -41,7 +41,7 @@
  * Returns the shift modifier string.
  */
 const char *arm_shf_mod_name(arm_shift_modifier mod) {
-  static const char *names[] = { NULL, NULL, "ASR", "LSL", "LSR", "ROR", "RRX" };
+  static const char *names[] = { NULL, NULL, "asr", "lsl", "lsr", "ror", "rrx" };
        return names[mod];
 }