From patchwork Wed Aug 28 12:36:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Polacek X-Patchwork-Id: 270491 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]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "www.sourceware.org", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 19ED32C00A4 for ; Wed, 28 Aug 2013 22:36:44 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=KDrcJC9Nze1RELNVxZp2+c5FZY9RUHilo9vGWkqEX7XPlcVDCyxfq FZp2UbAXwEOG62U4eXhPG4RTcr56NCbH7/7CrPLWL34pIaz/Em1VfZ5Inc/nexw+ 5oSddB/FuQ0mAaY7j0IHWkkVp5BqJ6D/hAripw9SAoLrejwgl2ikp0= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=Pz+eAlmzNRrXu+dVT5g2gUmlZLk=; b=V5AmSzzYdFsZ7naHfmoP TbQT7qQuN4Hm123K02ylyuxRcd2ucPTMr3jTZUjgoEhuh3sHL4DswnMfQhxEll/I e/NtJ5w3N5LV3/p0mRGbTiaAKpZDXTBc6eFmolcPgphE6HTf4gda6JVkwCRb/2mN XX5xij6EvuFiFDbJP4ndbp8= Received: (qmail 3117 invoked by alias); 28 Aug 2013 12:36:38 -0000 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 Received: (qmail 3107 invoked by uid 89); 28 Aug 2013 12:36:37 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 28 Aug 2013 12:36:37 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.3 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r7SCaZ4M032215 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 28 Aug 2013 08:36:35 -0400 Received: from redhat.com (ovpn-116-91.ams2.redhat.com [10.36.116.91]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r7SCaWcH021706 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 28 Aug 2013 08:36:34 -0400 Date: Wed, 28 Aug 2013 14:36:31 +0200 From: Marek Polacek To: GCC Patches Subject: [ubsan] Fix Makefile.in dependencies Message-ID: <20130828123631.GE574@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) As usually, when changing #include's in ubsan.c, I forgot to adjust Makefile.in as well. Thus fixed now. Applying to the ubsan branch. 2013-08-28 Marek Polacek * Makefile.in (ubsan.o): Add pointer-set.h dependency. Remove alloc-pool.h and HASH_TABLE_H dependencies. Marek --- gcc/Makefile.in.mp 2013-08-28 14:30:28.537813780 +0200 +++ gcc/Makefile.in 2013-08-28 14:30:33.498831590 +0200 @@ -2273,7 +2273,7 @@ tsan.o : $(CONFIG_H) $(SYSTEM_H) $(TREE_ intl.h cfghooks.h output.h options.h $(C_COMMON_H) tsan.h asan.h \ tree-ssa-propagate.h ubsan.o : ubsan.c ubsan.h $(CONFIG_H) $(SYSTEM_H) $(GIMPLE_H) \ - output.h coretypes.h $(TREE_H) alloc-pool.h $(CGRAPH_H) $(HASH_TABLE_H) \ + output.h coretypes.h $(TREE_H) $(CGRAPH_H) pointer-set.h \ toplev.h $(C_COMMON_H) tree-ssa-tail-merge.o: tree-ssa-tail-merge.c \ $(SYSTEM_H) $(CONFIG_H) coretypes.h $(TM_H) $(BITMAP_H) \