From ddbd24cedebed7fe9ed655bda74f23b807734317 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 21 Apr 2006 14:38:46 +0000 Subject: [PATCH] lowercase modifiers --- ir/be/arm/arm_new_nodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/arm/arm_new_nodes.c b/ir/be/arm/arm_new_nodes.c index e7e7de6ab..53afe7396 100644 --- a/ir/be/arm/arm_new_nodes.c +++ b/ir/be/arm/arm_new_nodes.c @@ -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]; } -- 2.20.1