From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7662 invoked by alias); 5 Nov 2012 02:22:32 -0000 Received: (qmail 7596 invoked by uid 48); 5 Nov 2012 02:22:16 -0000 From: "shobbo at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/55210] New: cannot #define FOO 'a' Date: Mon, 05 Nov 2012 02:22:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: shobbo at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 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: 2012-11/txt/msg00332.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55210 Bug #: 55210 Summary: cannot #define FOO 'a' Classification: Unclassified Product: gcc Version: 4.7.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran AssignedTo: unassigned@gcc.gnu.org ReportedBy: shobbo@gmail.com If I define a macro as in the summary I get the following output: [*] gfortran -cpp testfort.f -o testfort :0:0: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. I tried it with -cpp, -xf95-cpp-input and -xf77-cpp-input. using gfortran 4.7.2, 4.4.3 and 4.4.4. !---- testfort.f #define FOO 'a' program testfort implicit none print *, 'pretest' #if FOO == 'a' print *, "the macro is a character a" #endif print *, 'epitest' end program