diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2014-04-22 16:16:25 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-04-22 16:16:25 +0000 |
commit | b6918051675e3e7123a24917f0151c1b1e10db67 (patch) | |
tree | ba3a91b7adb4c1d72d59218e09e403e1ad16e001 /gcc/ada/fe.h | |
parent | 5cb74e90b383f424440aaf297974fd1f68fdd5c8 (diff) | |
download | gcc-b6918051675e3e7123a24917f0151c1b1e10db67.zip gcc-b6918051675e3e7123a24917f0151c1b1e10db67.tar.gz gcc-b6918051675e3e7123a24917f0151c1b1e10db67.tar.bz2 |
fe.h (Compiler_Abort): Replace Fat_Pointer with String_Pointer.
* 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: r209644
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 d9fe48b..5183820 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 (Fat_Pointer, int, Fat_Pointer) ATTRIBUTE_NORETURN; +extern int Compiler_Abort (String_Pointer, int, String_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 (Fat_Pointer, Node_Id); -extern void Error_Msg_NE (Fat_Pointer, Node_Id, Entity_Id); +extern void Error_Msg_N (String_Pointer, Node_Id); +extern void Error_Msg_NE (String_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, Fat_Pointer); +extern void Get_External_Name_With_Suffix (Entity_Id, String_Pointer); /* exp_util: */ |