This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH] Call get_compiler_info directly from test_compiler_info if needed.
- From: Pedro Alves <palves at redhat dot com>
- To: Andrew Burgess <aburgess at broadcom dot com>
- Cc: "gdb-patches at sourceware dot org" <gdb-patches at sourceware dot org>
- Date: Tue, 10 Dec 2013 15:00:00 +0000
- Subject: Re: [PATCH] Call get_compiler_info directly from test_compiler_info if needed.
- Authentication-results: sourceware.org; auth=none
- References: <52A728A0 dot 1050208 at broadcom dot com>
On 12/10/2013 02:43 PM, Andrew Burgess wrote:
> proc test_compiler_info { {compiler ""} } {
> global compiler_info
>
> + # Check that compiler_info has been initialised
> + if [string match "" $compiler_info] {
> + if [get_compiler_info] {
> + warning "Could not get compiler info"
> + return -1
> + }
> + }
What about get_compiler_info's $arg?
--
Pedro Alves