* config/ia64/ia64.c (ia64_profile_hook): Fix thinko.
From-SVN: r180455
This commit is contained in:
parent
0fd72195bc
commit
55504c7cb6
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue