diff options
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index a18ba97..735013e 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -360,13 +360,13 @@ fi case ${target} in i[34567]86-*-*) - if test $enable_cld = yes; then + if test "x$enable_cld" = xyes; then tm_defines="${tm_defines} USE_IX86_CLD=1" fi ;; x86_64-*-*) tm_file="i386/biarch64.h ${tm_file}" - if test $enable_cld = yes; then + if test "x$enable_cld" = xyes; then tm_defines="${tm_defines} USE_IX86_CLD=1" fi ;; |