Unverified Commit 98fbaef4 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

workaround for ICE issue with gcc 4.8.x

parent 961dcfc2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ typedef int bigint;
#elif defined(__INTEL_COMPILER)
#  define _noopt
#elif defined(__GNUC__)
#  if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4))
#  if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9))
#    define _noopt __attribute__((optimize("O0","no-var-tracking-assignments")))
#  else
#    define _noopt __attribute__((optimize("O0")))