Commit 2d586fb4 by Eric Botcazou Committed by Eric Botcazou

re PR ada/57934 (typo in definition of CAT in gcc-interface/ada.h for traditional preprocessor)

	PR ada/57934
	* gcc-interface/ada.h (CAT): Fix typo.

From-SVN: r201084
parent d05d0709
2013-07-20 Eric Botcazou <ebotcazou@adacore.com>
PR ada/57934
* gcc-interface/ada.h (CAT): Fix typo.
2013-07-08 Hristian Kirtchev <kirtchev@adacore.com> 2013-07-08 Hristian Kirtchev <kirtchev@adacore.com>
* einfo.adb (Get_Pragma): Handle the retrieval of delayed * einfo.adb (Get_Pragma): Handle the retrieval of delayed
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* * * *
* C Header File * * C Header File *
* * * *
* Copyright (C) 1992-2009, Free Software Foundation, Inc. * * Copyright (C) 1992-2013, Free Software Foundation, Inc. *
* * * *
* GNAT is free software; you can redistribute it and/or modify it under * * GNAT is free software; you can redistribute it and/or modify it under *
* terms of the GNU General Public License as published by the Free Soft- * * terms of the GNU General Public License as published by the Free Soft- *
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
#define CAT(A,B) A##B #define CAT(A,B) A##B
#else #else
#define _ECHO(A) A #define _ECHO(A) A
#define CAT(A,B) ECHO(A)B #define CAT(A,B) _ECHO(A)B
#endif #endif
/* The following macro definition simulates the effect of a declaration of /* The following macro definition simulates the effect of a declaration of
......
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