diff options
-rw-r--r-- | gnu/usr.bin/gcc/gcc/config/i386/openbsd64.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/gcc/gcc/config/i386/openbsd64.h b/gnu/usr.bin/gcc/gcc/config/i386/openbsd64.h index e2181a237d0..14819f58f0d 100644 --- a/gnu/usr.bin/gcc/gcc/config/i386/openbsd64.h +++ b/gnu/usr.bin/gcc/gcc/config/i386/openbsd64.h @@ -36,7 +36,8 @@ Boston, MA 02111-1307, USA. */ do \ { \ OPENBSD_OS_CPP_BUILTINS_ELF(); \ - OPENBSD_OS_CPP_BUILTINS_LP64(); \ + if (TARGET_64BIT) \ + OPENBSD_OS_CPP_BUILTINS_LP64(); \ } \ while (0) |