From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26141 invoked by alias); 23 Apr 2011 11:56:07 -0000 Received: (qmail 26130 invoked by uid 22791); 23 Apr 2011 11:56:07 -0000 X-SWARE-Spam-Status: No, hits=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 23 Apr 2011 11:55:53 +0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/48740] Raw C++0x strings and trigraphs mix badly X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Status Resolution Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Sat, 23 Apr 2011 11:56:00 -0000 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: 2011-04/txt/msg02436.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48740 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID | --- Comment #11 from Jakub Jelinek 2011-04-23 11:55:24 UTC --- I get no error with 4.6.1 20110415 (prerelease), nor current trunk, nor 4.6.0 20101005 (experimental), and all the way back to http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=157804 What doesn't work though is -save-temps, apparently it is preprocessed as # 1 "q.C" # 1 "" # 1 "" # 1 "q.C" char const *R = R"raw(foo%sbar%sfred%sbob?????]raw"; with ] instead of ), so that is something we should fix. Probably you are using ccache and failed to mention that important thing...