From owner-svn-src-all@FreeBSD.ORG Thu Apr 2 12:58:05 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD7EFE78; Thu, 2 Apr 2015 12:58:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8CF5F37; Thu, 2 Apr 2015 12:58:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t32Cw5BH055842; Thu, 2 Apr 2015 12:58:05 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t32Cw56Z055841; Thu, 2 Apr 2015 12:58:05 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201504021258.t32Cw56Z055841@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Thu, 2 Apr 2015 12:58:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r280986 - head/sys/arm/arm X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Apr 2015 12:58:05 -0000 Author: andrew Date: Thu Apr 2 12:58:04 2015 New Revision: 280986 URL: https://svnweb.freebsd.org/changeset/base/280986 Log: We may not be using gcc to compile this. Sponsored by: The FreeBSD Foundation Modified: head/sys/arm/arm/generic_timer.c Modified: head/sys/arm/arm/generic_timer.c ============================================================================== --- head/sys/arm/arm/generic_timer.c Thu Apr 2 12:56:06 2015 (r280985) +++ head/sys/arm/arm/generic_timer.c Thu Apr 2 12:58:04 2015 (r280986) @@ -353,7 +353,7 @@ DELAY(int usec) for (; usec > 0; usec--) for (counts = 200; counts > 0; counts--) /* - * Prevent gcc from optimizing + * Prevent the compiler from optimizing * out the loop */ cpufunc_nullop();