From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 102229 invoked by alias); 4 Nov 2015 08:49:39 -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 102133 invoked by uid 89); 4 Nov 2015 08:49:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-5.9 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 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-SHA encrypted) ESMTPS; Wed, 04 Nov 2015 08:49:38 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] btrace: add instruction-history /s and fix documentation From: sergiodj+buildbot@redhat.com To: gdb-testers@sourceware.org Message-Id: <0c532a298058669a72061ad94ba9e24170ae91ae@gdb-build> Date: Wed, 04 Nov 2015 08:49:00 -0000 X-SW-Source: 2015-q4/txt/msg04517.txt.bz2 *** TEST RESULTS FOR COMMIT 0c532a298058669a72061ad94ba9e24170ae91ae *** Author: Markus Metzger Branch: master Commit: 0c532a298058669a72061ad94ba9e24170ae91ae btrace: add instruction-history /s and fix documentation Add support for the /s modifier of the "record instruction-history" command. It behaves exactly like /m and prints disassembled instructions in the order in which they were recorded with interleaved sources. We accept /s in addition to /m to align with the "disassemble" command. The "record instruction-history" modifiers were not documented. Document all of them. gdb/ * record.c (get_insn_history_modifiers): Set DISASSEMBLY_SOURCE instead of DISASSEMBLY_SOURCE_DEPRECATED. Also accept /s. (_initialize_record): Document the /s modifier. * NEWS: Announce record instruction-history's new /s modifier. doc/ * gdb.texinfo (Process Record and Replay): Document "record instruction-history" modifiers.