diff options
author | 2013-07-04 02:19:46 +0000 | |
---|---|---|
committer | 2013-07-04 02:19:46 +0000 | |
commit | 9506a00be4eb0d9bebf50b5d13c6e396e3241a22 (patch) | |
tree | 3f5aed837d46fd57ad4ebd847e5a672963c68429 /gnu/gcc/libcpp/include/cpplib.h | |
parent | Fix two errors: (diff) | |
download | wireguard-openbsd-9506a00be4eb0d9bebf50b5d13c6e396e3241a22.tar.xz wireguard-openbsd-9506a00be4eb0d9bebf50b5d13c6e396e3241a22.zip |
Add support for the GCC binary integer constants extension.
From Joerg Wunsch in GCC PR 23479, under the GPLv2.
This is required to build the i965 backend with newer versions of mesa.
ok kettenis@ espie@ miod@
Diffstat (limited to 'gnu/gcc/libcpp/include/cpplib.h')
-rw-r--r-- | gnu/gcc/libcpp/include/cpplib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/gcc/libcpp/include/cpplib.h b/gnu/gcc/libcpp/include/cpplib.h index bb0bfff7b62..38599109e14 100644 --- a/gnu/gcc/libcpp/include/cpplib.h +++ b/gnu/gcc/libcpp/include/cpplib.h @@ -744,6 +744,7 @@ struct cpp_num #define CPP_N_DECIMAL 0x0100 #define CPP_N_HEX 0x0200 #define CPP_N_OCTAL 0x0400 +#define CPP_N_BINARY 0x0800 #define CPP_N_UNSIGNED 0x1000 /* Properties. */ #define CPP_N_IMAGINARY 0x2000 |