Commit a721a601 by Steven Bosscher

* doc/extend.texi (Function Names): Make the example compilable.

From-SVN: r64350
parent a12f8290
2003-03-14 Steven Bosscher <steven@gcc.gnu.org>
* doc/extend.texi (Function Names): Make the example compilable.
2003-03-13 David Edelsohn <edelsohn@gnu.org> 2003-03-13 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (processor_target_table): Really allow * config/rs6000/rs6000.c (processor_target_table): Really allow
......
...@@ -4316,7 +4316,7 @@ extern int printf (char *, ...); ...@@ -4316,7 +4316,7 @@ extern int printf (char *, ...);
class a @{ class a @{
public: public:
sub (int i) void sub (int i)
@{ @{
printf ("__FUNCTION__ = %s\n", __FUNCTION__); printf ("__FUNCTION__ = %s\n", __FUNCTION__);
printf ("__PRETTY_FUNCTION__ = %s\n", __PRETTY_FUNCTION__); printf ("__PRETTY_FUNCTION__ = %s\n", __PRETTY_FUNCTION__);
......
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