From owner-svn-soc-all@FreeBSD.ORG Thu Sep 11 09:40:56 2014 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD8BB168 for ; Thu, 11 Sep 2014 09:40:56 +0000 (UTC) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9B409AE for ; Thu, 11 Sep 2014 09:40:56 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8B9euFw078153 for ; Thu, 11 Sep 2014 09:40:56 GMT (envelope-from dpl@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.9/8.14.9/Submit) id s8B9euVv078151 for svn-soc-all@FreeBSD.org; Thu, 11 Sep 2014 09:40:56 GMT (envelope-from dpl@FreeBSD.org) Date: Thu, 11 Sep 2014 09:40:56 GMT Message-Id: <201409110940.s8B9euVv078151@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to dpl@FreeBSD.org using -f From: dpl@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r273959 - soc2014/dpl/netmap-ipfwjit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Sep 2014 09:40:56 -0000 Author: dpl Date: Thu Sep 11 09:40:55 2014 New Revision: 273959 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=273959 Log: Ensure the bitcode's not optimized. Modified: soc2014/dpl/netmap-ipfwjit/Makefile.kipfw Modified: soc2014/dpl/netmap-ipfwjit/Makefile.kipfw ============================================================================== --- soc2014/dpl/netmap-ipfwjit/Makefile.kipfw Thu Sep 11 07:16:15 2014 (r273958) +++ soc2014/dpl/netmap-ipfwjit/Makefile.kipfw Thu Sep 11 09:40:55 2014 (r273959) @@ -154,7 +154,7 @@ #Generate the actual bytecode to be used ../rules.bc: - $(HIDE) $(CC) $(CFLAGS) -emit-llvm -c -o ../rules.bc ../sys/netpfil/ipfw/ip_fw_rules.c + $(HIDE) $(CC) $(CFLAGS) -O0 -emit-llvm -c -o ../rules.bc ../sys/netpfil/ipfw/ip_fw_rules.c radix.o:# CFLAGS += -U_KERNEL