diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2014-04-23 10:29:47 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-04-23 10:29:47 +0000 |
commit | 8f78ecdbe08233a96bad6d268a6bd06c754949b0 (patch) | |
tree | 5e4ae646ce6b47a1c937834a7d57b54af38e57e4 /gcc/ada/fe.h | |
parent | eab264af0c65e7830f140d12008527244a7236a8 (diff) | |
download | gcc-8f78ecdbe08233a96bad6d268a6bd06c754949b0.zip gcc-8f78ecdbe08233a96bad6d268a6bd06c754949b0.tar.gz gcc-8f78ecdbe08233a96bad6d268a6bd06c754949b0.tar.bz2 |
Revert
2014-04-22 Richard Henderson <rth@redhat.com>
* gcc-interface/Makefile.in: Support aarch64-linux.
2014-04-22 Eric Botcazou <ebotcazou@adacore.com>
* fe.h (Compiler_Abort): Replace Fat_Pointer with String_Pointer.
(Error_Msg_N): Likewise.
(Error_Msg_NE): Likewise.
(Get_External_Name_With_Suffix): Likewise.
* types.h (Fat_Pointer): Delete.
(String_Pointer): New type.
(DECLARE_STRING_POINTER): New macro.
* gcc-interface/decl.c (create_concat_name): Adjust.
* gcc-interface/trans.c (post_error): Likewise.
(post_error_ne): Likewise.
* gcc-interface/misc.c (internal_error_function): Likewise.
From-SVN: r209684
Diffstat (limited to 'gcc/ada/fe.h')
-rw-r--r-- | gcc/ada/fe.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/fe.h b/gcc/ada/fe.h index 5183820..d9fe48b 100644 --- a/gcc/ada/fe.h +++ b/gcc/ada/fe.h @@ -39,7 +39,7 @@ extern "C" { /* comperr: */ #define Compiler_Abort comperr__compiler_abort -extern int Compiler_Abort (String_Pointer, int, String_Pointer) ATTRIBUTE_NORETURN; +extern int Compiler_Abort (Fat_Pointer, int, Fat_Pointer) ATTRIBUTE_NORETURN; /* csets: */ @@ -90,8 +90,8 @@ extern Node_Id Get_Attribute_Definition_Clause (Entity_Id, char); #define Error_Msg_NE errout__error_msg_ne #define Set_Identifier_Casing errout__set_identifier_casing -extern void Error_Msg_N (String_Pointer, Node_Id); -extern void Error_Msg_NE (String_Pointer, Node_Id, Entity_Id); +extern void Error_Msg_N (Fat_Pointer, Node_Id); +extern void Error_Msg_NE (Fat_Pointer, Node_Id, Entity_Id); extern void Set_Identifier_Casing (Char *, const Char *); /* err_vars: */ @@ -151,7 +151,7 @@ extern void Setup_Asm_Outputs (Node_Id); extern void Get_Encoded_Name (Entity_Id); extern void Get_External_Name (Entity_Id, Boolean); -extern void Get_External_Name_With_Suffix (Entity_Id, String_Pointer); +extern void Get_External_Name_With_Suffix (Entity_Id, Fat_Pointer); /* exp_util: */ |