diff options
author | Brian <[email protected]> | 2007-09-20 15:11:14 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-09-20 15:11:14 -0600 |
commit | a5467fbdd9ca599c9512433ece30f90fd67f15e3 (patch) | |
tree | 8bed869ce047e6c9e3bb1627bed19b1cc0bfd5b8 /src/mesa/main/glheader.h | |
parent | 58484dc00a30f6d0a0e43021283e1ce18ef4d5a3 (diff) |
fixes for bluegene-xlc-osmesa config
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r-- | src/mesa/main/glheader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h index fd4127558a8..2d2da49fe5b 100644 --- a/src/mesa/main/glheader.h +++ b/src/mesa/main/glheader.h @@ -237,7 +237,7 @@ #endif -#if !defined __GNUC__ || __GNUC__ < 3 +#if (!defined(__GNUC__) || __GNUC__ < 3) && !defined(__IBMC__) # define __builtin_expect(x, y) x #endif |