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 c/43642] FAIL: c-c++-common/raw-string-1.c



------- Comment #4 from jakub at gcc dot gnu dot org  2010-04-05 15:40 -------
Minimal testcase seems to be:
const char s4[] = R"(??()";
On powerpc64-linux native, compiled with -trigraphs -std=gnu99 -S this yields
the correct:
s4:
        .string "??("
but compiled with -std=gnu99 -trigraphs -S it yields:
s4:
        .string "??"
        .string ""
Couldn't reproduce with a cross compiler though.


-- 


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


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