about summary refs log tree commit diff
path: root/instrumentation/afl-gcc-common.h
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2022-09-23 23:19:10 +0200
committerhexcoder- <heiko@hexco.de>2022-09-23 23:19:10 +0200
commited54532f29e90bd3e9dd7322d9ed1de8877d9498 (patch)
treeb12b00ce6768529ac7c36c9a634ba69f63c7d78b /instrumentation/afl-gcc-common.h
parent6ed40d5a08c7b4a82d9287b9412b33640c6c9bf6 (diff)
downloadafl++-ed54532f29e90bd3e9dd7322d9ed1de8877d9498.tar.gz
make gcc_plugin compilable for gcc 3.6.0
Diffstat (limited to 'instrumentation/afl-gcc-common.h')
-rw-r--r--instrumentation/afl-gcc-common.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/instrumentation/afl-gcc-common.h b/instrumentation/afl-gcc-common.h
index 2b71bd22..766c0eff 100644
--- a/instrumentation/afl-gcc-common.h
+++ b/instrumentation/afl-gcc-common.h
@@ -498,3 +498,10 @@ struct afl_base_pass : gimple_opt_pass {
 
 }  // namespace
 
+// compatibility for older gcc versions
+#if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= \
+    60200                                               /* >= version 6.2.0 */
+#define gimple gimple *
+#else
+#define gimple gimple
+#endif