From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10543 invoked by alias); 11 Oct 2008 22:07:54 -0000 Received: (qmail 18230 invoked by uid 48); 11 Oct 2008 22:06:35 -0000 Date: Sat, 11 Oct 2008 22:07:00 -0000 Message-ID: <20081011220635.18229.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug c/37807] Exponential compile time with MMX builtins. In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "rguenth at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2008-10/txt/msg00760.txt.bz2 ------- Comment #3 from rguenth at gcc dot gnu dot org 2008-10-11 22:06 ------- On the trunk it's fast if you fix the testcase to do static INLINE value_t ROTATE_LEFT (value_t a, unsigned count) { return OR (LEFT (a, ((value_t){count, count})), RIGHT (a, ((value_t){32-count,32-count}))); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37807