Commit 938999d4 authored by Keith M. Wesolowski's avatar Keith M. Wesolowski

[SPARC32]: Continue to avoid the use of __builtin_trap for BUG()

gcc 3.3.3 continues to ICE on the BUG_ON() in mm/fremap.c.
parent dfa0014b
......@@ -8,7 +8,7 @@
*/
#if (__GNUC__ > 3) || \
(__GNUC__ == 3 && __GNUC_MINOR__ > 3) || \
(__GNUC__ == 3 && __GNUC_MINOR__ == 3 && __GNUC_PATCHLEVEL__ >= 1)
(__GNUC__ == 3 && __GNUC_MINOR__ == 3 && __GNUC_PATCHLEVEL__ >= 4)
#define __bug_trap() __builtin_trap()
#else
#define __bug_trap() \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment