Skip to content
Snippets Groups Projects
Commit 82d3d6c8 authored by Richard Henderson's avatar Richard Henderson Committed by Richard Henderson
Browse files

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
No related branches found
No related tags found
No related merge requests found
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>
 
PR tree-optimization/17578
......
......@@ -25,8 +25,8 @@
#endif
#ifdef __GNUC__
#define CINT(x, y) (x + __extension__ y##i)
#define CDBL(x, y) (x + __extension__ y##i)
#define CINT(x, y) (x + y * __extension__ 1i)
#define CDBL(x, y) (x + y * __extension__ 1i)
#else
#ifdef __SUNPRO_C
/* ??? Complex support without <complex.h>. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment