This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug middle-end/12085] Internal compiler error in convert_move, at expr.c:504 with -O3 flag


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12085



------- Additional Comments From dhollen at mosis dot org  2003-08-28 15:23 -------
Here is the preprocessed source code to reproduce the bug
(could not create a new attachement - it always told me that I
did not specify a file to attach).

# 1 "test.c"
# 1 "<built-in>"
# 1 "<command line>"
# 1 "test.c"

extern void testme(char *);
extern int value(int);

void testme(char * s) {
        double d;

        d = ((double (*) (double)) value)(d);
}

int value(int arg) {
        return arg;
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]