From 146b869494c836f41b63f937956190cf409a486b Mon Sep 17 00:00:00 2001 From: Richard Lowe Date: Fri, 3 May 2019 01:20:30 +0000 Subject: i386: use correct error message about -msave-args and ABIs We used to say it made no sense in 32bit mode, but it doesn't make sense in 16bit mode either --- gcc/config/i386/i386-options.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- gcc-releases-gcc-14.3.0/gcc/config/i386/i386-options.cc.orig +++ gcc-releases-gcc-14.3.0/gcc/config/i386/i386-options.cc @@ -2797,7 +2797,7 @@ } if (!TARGET_64BIT_P (opts->x_ix86_isa_flags) && TARGET_SAVE_ARGS) - error ("-msave-args makes no sense in the 32-bit mode"); + error ("-msave-args only works in x32 or 64-bit mode"); /* Validate -mpreferred-stack-boundary= value or default it to PREFERRED_STACK_BOUNDARY_DEFAULT. */