diff options
Diffstat (limited to 'gdb/testsuite/lib/compiler.c')
-rw-r--r-- | gdb/testsuite/lib/compiler.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/testsuite/lib/compiler.c b/gdb/testsuite/lib/compiler.c index 8ebccaf..5875041 100644 --- a/gdb/testsuite/lib/compiler.c +++ b/gdb/testsuite/lib/compiler.c @@ -64,3 +64,9 @@ set compiler_info [join {hpcc __HP_cc} -] #if defined (__HP_aCC) set compiler_info [join {hpacc __HP_aCC} -] #endif + +#if defined (__xlc__) +/* IBM'x xlc compiler. NOTE: __xlc__ expands to a double quoted string of four + numbers seperated by '.'s: currently "7.0.0.0" */ +regsub -all {\.} [join {xlc __xlc__} -] - compiler_info +#endif |