From patchwork Tue Nov 13 03:13:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Edelsohn X-Patchwork-Id: 198531 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 11DFD2C00AE for ; Tue, 13 Nov 2012 14:13:40 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1353381221; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=iHvQ/xG O5YcORQZsggDE2cqxCJ4=; b=BPSOsSIsZAIzQytQRAi8YaxO+hoGeodUfr3MkhQ ghBzOdza3WaV11j4j2I4s8w/lF6DJJ6mz4xdFlIRt0YftsNwspQkvaTKVabIxe1/ B++0Kfqb1GFKhwrfJfsOL3ZFAy4JG4hRyuD9bZ0/ZT2d2GG8z5rQiwpg2j3GuUeV mpuY= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=ABspqaIRZHTfP+3JpBsgNDaIE1OEWeDUZ9ryrtqiXzsRTU5XVZf7CsBUuV6Be/ M/H0ZKx7hnoWIbxp9DDCky7G2zPz4fMPMrf3mRjEF1lKITOJlNKu2kUw8ASJGNL1 k+L/EEO3LNsEfx33wgFauiwy3AhVgX8osdc6zCQS3DgHs=; Received: (qmail 10991 invoked by alias); 13 Nov 2012 03:13:16 -0000 Received: (qmail 10935 invoked by uid 22791); 13 Nov 2012 03:13:15 -0000 X-SWARE-Spam-Status: No, hits=-4.2 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-vb0-f47.google.com (HELO mail-vb0-f47.google.com) (209.85.212.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 13 Nov 2012 03:13:09 +0000 Received: by mail-vb0-f47.google.com with SMTP id ez10so7370724vbb.20 for ; Mon, 12 Nov 2012 19:13:08 -0800 (PST) MIME-Version: 1.0 Received: by 10.58.85.134 with SMTP id h6mr24435368vez.18.1352776388626; Mon, 12 Nov 2012 19:13:08 -0800 (PST) Received: by 10.58.235.232 with HTTP; Mon, 12 Nov 2012 19:13:08 -0800 (PST) Date: Mon, 12 Nov 2012 22:13:08 -0500 Message-ID: Subject: [PATCH] Include tm_p.h in asan.c From: David Edelsohn To: GCC Patches Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org gcc/asan.c probably should have been split into two files because it works at multiple levels. But given that it invokes ASM_GENERATE_INTERNAL_LABEL, it needs to include tm_p.h to include -protos.h. Committed as obvious to allow AIX bootstrap to proceed. * asan.c: Include tm_p.h Index: asan.c =================================================================== --- asan.c (revision 193465) +++ asan.c (working copy) @@ -32,6 +32,7 @@ #include "expr.h" #include "optabs.h" #include "output.h" +#include "tm_p.h" /* AddressSanitizer finds out-of-bounds and use-after-free bugs with <2x slowdown on average.