qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-arm] [Qemu-devel] [PATCH] target-arm: Fix unreachable code in


From: Shannon Zhao
Subject: Re: [Qemu-arm] [Qemu-devel] [PATCH] target-arm: Fix unreachable code in gicv3_class_name()
Date: Tue, 12 Jul 2016 09:23:29 +0800
User-agent: Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.4.0


On 2016/7/12 2:09, Peter Maydell wrote:
> Coverity complains that the exit() in gicv3_class_name()
> can be unreachable, because if TARGET_AARCH64 is defined
> then all code paths return before reaching it. Move the
> exit() up to the error_report() that it belongs with.
> 
> Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Shannon Zhao <address@hidden>

> ---
>  target-arm/machine.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/target-arm/machine.c b/target-arm/machine.c
> index 2dbeb82..7a6ca31 100644
> --- a/target-arm/machine.c
> +++ b/target-arm/machine.c
> @@ -340,10 +340,9 @@ const char *gicv3_class_name(void)
>  #else
>          error_report("KVM GICv3 acceleration is not supported on this "
>                       "platform");
> +        exit(1);
>  #endif
>      } else {
>          return "arm-gicv3";
>      }
> -
> -    exit(1);
>  }
> 

-- 
Shannon




reply via email to

[Prev in Thread] Current Thread [Next in Thread]