]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Fri, 5 Jun 1992 06:18:51 +0000 (06:18 +0000)
committerRichard Stallman <rms@gnu.org>
Fri, 5 Jun 1992 06:18:51 +0000 (06:18 +0000)
From-SVN: r1163

gcc/enquire.c

index 331a48c6df59925af3eb19648fea548eac2e1e24..fab663f21269775f82494b06b74057ef7aeee3c3 100644 (file)
@@ -907,7 +907,7 @@ char *fake_f_rep(type, val) char *type; Long_double val; {
        static char buf[1024];
        union { int i[4]; Long_double ld;} u;
        u.ld = val;
-       sprintf(buf, "(((union __convert_long_double) {0x%x, 0x%x, 0x%x, 0x%x}).__convert_long_double_d)",
+       sprintf(buf, "(__extension__ ((union __convert_long_double) {0x%x, 0x%x, 0x%x, 0x%x}).__convert_long_double_d)",
                u.i[0], u.i[1], u.i[2], u.i[3]);
        return buf;
 }