Commit 55504c7c by Eric Botcazou

* config/ia64/ia64.c (ia64_profile_hook): Fix thinko.

From-SVN: r180455
parent 0fd72195
2011-10-25 Eric Botcazou <ebotcazou@adacore.com>
* config/ia64/ia64.c (ia64_profile_hook): Fix thinko.
2011-10-25 Richard Henderson <rth@redhat.com>
* config/i386/sse.md (VEC_EXTRACT_EVENODD_MODE): Remove.
......@@ -54,11 +58,11 @@
(VEC_EXTRACT_ODD_EXPR, VEC_INTERLEAVE_HIGH_EXPR,
VEC_INTERLEAVE_LOW_EXPR): Likewise.
2011-10-21 Mike Stump <mikestump@comcast.net>
2011-10-25 Mike Stump <mikestump@comcast.net>
* reload.c (regno_clobbered_p): Fix typo.
2011-10-24 Dodji Seketeli <dodji@redhat.com>
2011-10-25 Dodji Seketeli <dodji@redhat.com>
* input.c (expand_location): Rewrite using
linemap_resolve_location and linemap_expand_location. Add a
......@@ -10716,7 +10716,7 @@ ia64_profile_hook (int labelno)
char buf[30];
const char *label_name;
ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
label_name = (*targetm.strip_name_encoding) (ggc_strdup (buf));
label_name = ggc_strdup ((*targetm.strip_name_encoding) (buf));
label = gen_rtx_SYMBOL_REF (Pmode, label_name);
SYMBOL_REF_FLAGS (label) = SYMBOL_FLAG_LOCAL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment