From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18496 invoked by alias); 2 Mar 2010 22:05:52 -0000 Received: (qmail 18477 invoked by uid 22791); 2 Mar 2010 22:05:51 -0000 X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_SORBS_WEB X-Spam-Check-By: sourceware.org Received: from web112601.mail.gq1.yahoo.com (HELO web112601.mail.gq1.yahoo.com) (98.137.27.181) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Tue, 02 Mar 2010 22:05:47 +0000 Received: (qmail 75351 invoked by uid 60001); 2 Mar 2010 22:05:45 -0000 Message-ID: <536780.72841.qm@web112601.mail.gq1.yahoo.com> Received: from [64.28.152.131] by web112601.mail.gq1.yahoo.com via HTTP; Tue, 02 Mar 2010 14:05:45 PST X-RocketYMMF: mrm94040 Date: Tue, 02 Mar 2010 22:05:00 -0000 From: Michael Morrell Reply-To: morrell@alumni.ucsd.edu Subject: Re: temp preprocessed filename To: Ian Lance Taylor Cc: gcc-help@gcc.gnu.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2010-03/txt/msg00028.txt.bz2 Here's a smaller testcase: typedef int ptrdiff_t; namespace std { using ::ptrdiff_t; } void foo() {} when you run: g++ -g -E foo.cpp > foo.ii; g++ -g -c foo.ii the foo.o produced contains a reference to foo.ii in .debug_line. Michael