From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 130015 invoked by alias); 27 Feb 2015 18:55:07 -0000 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org Received: (qmail 130000 invoked by uid 89); 27 Feb 2015 18:55:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,KAM_FROM_URIBL_PCCC,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=no version=3.3.2 X-HELO: mail-ig0-f176.google.com Received: from mail-ig0-f176.google.com (HELO mail-ig0-f176.google.com) (209.85.213.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 27 Feb 2015 18:55:05 +0000 Received: by igbhn18 with SMTP id hn18so2809272igb.2 for ; Fri, 27 Feb 2015 10:55:03 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.43.64.204 with SMTP id xj12mr11971205icb.9.1425063303889; Fri, 27 Feb 2015 10:55:03 -0800 (PST) Received: by 10.107.136.80 with HTTP; Fri, 27 Feb 2015 10:55:03 -0800 (PST) Date: Fri, 27 Feb 2015 23:23:00 -0000 Message-ID: Subject: many -Wincompatible-pointer-types on clang with gdb-7.9 From: Jack Howarth To: "gdb@sourceware.org" Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-02/txt/msg00083.txt.bz2 On gdb-7.9, we are seeing a large number of warnings from -Wincompatible-pointer-types with clang... ./guile/guile.c:474:25: warning: incompatible pointer types initializing 'scm_t_subr' (aka 'void (*)()') with an expression of type 'SCM (SCM, SCM)' [-Wincompatible-pointer-types] { "execute", 1, 0, 1, gdbscm_execute_gdb_command, ^~~~~~~~~~~~~~~~~~~~~~~~~~ ./guile/guile.c:487:32: warning: incompatible pointer types initializing 'scm_t_subr' (aka 'void (*)()') with an expression of type 'SCM (void)' [-Wincompatible-pointer-types] { "data-directory", 0, 0, 0, gdbscm_data_directory, ^~~~~~~~~~~~~~~~~~~~~ ./guile/guile.c:491:38: warning: incompatible pointer types initializing 'scm_t_subr' (aka 'void (*)()') with an expression of type 'SCM (void)' [-Wincompatible-pointer-types] { "guile-data-directory", 0, 0, 0, gdbscm_guile_data_directory, ^~~~~~~~~~~~~~~~~~~~~~~~~~~ These all are associated with the guile/scm-*.c files. Jack