From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27307 invoked by alias); 5 Apr 2010 15:41:46 -0000 Received: (qmail 27205 invoked by uid 48); 5 Apr 2010 15:41:10 -0000 Date: Mon, 05 Apr 2010 15:41:00 -0000 Message-ID: <20100405154110.27204.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug c/43642] FAIL: c-c++-common/raw-string-1.c In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "jakub at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2010-04/txt/msg00402.txt.bz2 ------- 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