Commit 82d3d6c8 by Richard Henderson Committed by Richard Henderson

compat-common.h (CINT, CDBL): Use multiplication by 1i instead of token pasting.

        * gcc.dg/compat/compat-common.h (CINT, CDBL): Use multiplication
        by 1i instead of token pasting.

From-SVN: r92635
parent c91dead9
2004-12-26 Richard Henderson <rth@redhat.com>
* gcc.dg/compat/compat-common.h (CINT, CDBL): Use multiplication
by 1i instead of token pasting.
2004-12-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 2004-12-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR tree-optimization/17578 PR tree-optimization/17578
......
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
#endif #endif
#ifdef __GNUC__ #ifdef __GNUC__
#define CINT(x, y) (x + __extension__ y##i) #define CINT(x, y) (x + y * __extension__ 1i)
#define CDBL(x, y) (x + __extension__ y##i) #define CDBL(x, y) (x + y * __extension__ 1i)
#else #else
#ifdef __SUNPRO_C #ifdef __SUNPRO_C
/* ??? Complex support without <complex.h>. */ /* ??? Complex support without <complex.h>. */
......
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