summaryrefslogtreecommitdiff
path: root/src/localconsts.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-09-30 04:41:33 +0300
committerAndrei Karas <akaras@inbox.ru>2016-09-30 19:34:32 +0300
commit205ed1edc60277c6ae8cc4383ab24535b36f7761 (patch)
treeead2580789153a2e8c62fa0923b2cc4642a5d900 /src/localconsts.h
parent3273c8ff0ce9999179b541ee88f210e75cbc0c18 (diff)
downloadplus-205ed1edc60277c6ae8cc4383ab24535b36f7761.tar.gz
plus-205ed1edc60277c6ae8cc4383ab24535b36f7761.tar.bz2
plus-205ed1edc60277c6ae8cc4383ab24535b36f7761.tar.xz
plus-205ed1edc60277c6ae8cc4383ab24535b36f7761.zip
Add some new flags for gcc snapshot and fix new warning.
Diffstat (limited to 'src/localconsts.h')
-rw-r--r--src/localconsts.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/localconsts.h b/src/localconsts.h
index 08f2efe40..3ae1c74e6 100644
--- a/src/localconsts.h
+++ b/src/localconsts.h
@@ -163,12 +163,19 @@
#endif // ENABLE_CILKPLUS
#ifdef ADVGCC
+
#define const2 const
#if GCC_VERSION >= 60000
#define PRAGMA6(str) _Pragma(#str)
#else // GCC_VERSION > 60000
#define PRAGMA6(str)
#endif // GCC_VERSION > 60000
+#if GCC_VERSION >= 70000
+#define A_FALLTHROUGH __attribute__ ((fallthrough));
+#else // GCC_VERSION > 70000
+#define A_FALLTHROUGH
+#endif // GCC_VERSION > 70000
+
#else // ADVGCC
#define const2
#define PRAGMA6(str)