From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27399 invoked by alias); 12 Apr 2014 02:59:16 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 27383 invoked by uid 89); 12 Apr 2014 02:59:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ve0-f177.google.com Received: from mail-ve0-f177.google.com (HELO mail-ve0-f177.google.com) (209.85.128.177) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sat, 12 Apr 2014 02:59:11 +0000 Received: by mail-ve0-f177.google.com with SMTP id sa20so5392275veb.22 for ; Fri, 11 Apr 2014 19:59:09 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.220.92.135 with SMTP id r7mr23054360vcm.11.1397271549454; Fri, 11 Apr 2014 19:59:09 -0700 (PDT) Received: by 10.58.243.98 with HTTP; Fri, 11 Apr 2014 19:59:09 -0700 (PDT) In-Reply-To: References: Date: Sat, 12 Apr 2014 02:59:00 -0000 Message-ID: Subject: Re: [patch] explicitly specify -std=gnu89 for gdb.cp/inline-break.exp From: Andrew Pinski To: David Blaikie Cc: gdb-patches , Eric Christopher , Doug Evans Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-04/txt/msg00233.txt.bz2 On Fri, Apr 11, 2014 at 4:58 PM, David Blaikie wrote: > This test is intending to use gnu style inline rather than the > standard c99 inline semantics. Clang defaults to c99 and the test > breaks for this (and other - there's an inlining debug info quality > bug here too - I'll file a bug and kfail the remaining failures in a > separate patch) reason. Or better yet, use the gnu_inline attribute on those functions. Thanks, Andrew Pinski