From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 123998 invoked by alias); 22 Jun 2016 16:47:04 -0000 Mailing-List: contact gdb-testers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-testers-owner@sourceware.org Received: (qmail 123959 invoked by uid 89); 22 Jun 2016 16:47:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: kwanyin.sergiodj.net Received: from kwanyin.sergiodj.net (HELO kwanyin.sergiodj.net) (176.31.208.32) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 22 Jun 2016 16:46:48 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] S390 gdbserver: Mark local funcs/vars as static From: sergiodj+buildbot@sergiodj.net To: gdb-testers@sourceware.org Message-Id: <782c112285467b906296b020f8fce3fb76cc5bb5@gdb-build> Date: Wed, 22 Jun 2016 16:52:00 -0000 X-SW-Source: 2016-q2/txt/msg05497.txt.bz2 *** TEST RESULTS FOR COMMIT 782c112285467b906296b020f8fce3fb76cc5bb5 *** Author: Andreas Arnez Branch: master Commit: 782c112285467b906296b020f8fce3fb76cc5bb5 S390 gdbserver: Mark local funcs/vars as static Compiling with '-Wmissing-declarations' yields warnings in linux-s390-low.c. To fix this, mark appropriate functions as static. gdb/gdbserver/ChangeLog: * linux-s390-low.c (s390_emit_eq_goto): Mark function static. (s390_emit_ne_goto): Likewise. (s390_emit_lt_goto): Likewise. (s390_emit_le_goto): Likewise. (s390_emit_gt_goto): Likewise. (s390_emit_ge_goto): Likewise. (s390x_emit_eq_goto): Likewise. (s390x_emit_ne_goto): Likewise. (s390x_emit_lt_goto): Likewise. (s390x_emit_le_goto): Likewise. (s390x_emit_gt_goto): Likewise. (s390x_emit_ge_goto): Likewise. (s390_emit_ops_impl): Mark variable static. (s390x_emit_ops): Likewise.