aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Chastain <mec@google.com>2004-07-02 04:18:17 +0000
committerMichael Chastain <mec@google.com>2004-07-02 04:18:17 +0000
commitd205ad70f2ce07f7cbe9debc8bc1859981613bb5 (patch)
tree5e273832b76d0400df2d8ecbc6a53033e551d18d /gdb/testsuite/lib/compiler.c
parent2004-07-01 H.J. Lu <hongjiu.lu@intel.com> (diff)
downloadbinutils-gdb-d205ad70f2ce07f7cbe9debc8bc1859981613bb5.tar.gz
binutils-gdb-d205ad70f2ce07f7cbe9debc8bc1859981613bb5.tar.bz2
binutils-gdb-d205ad70f2ce07f7cbe9debc8bc1859981613bb5.zip
2004-07-02 Michael Chastain <mec.gnu@mindspring.com>
* lib/compiler.c: Accept __HP_CXD_SPP for old hp ansi c compiler. * lib/compiler.cc: Likewise.
Diffstat (limited to 'gdb/testsuite/lib/compiler.c')
-rw-r--r--gdb/testsuite/lib/compiler.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/testsuite/lib/compiler.c b/gdb/testsuite/lib/compiler.c
index 1cc5d7397ad..da2fb0c0ac3 100644
--- a/gdb/testsuite/lib/compiler.c
+++ b/gdb/testsuite/lib/compiler.c
@@ -52,7 +52,13 @@ set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ "unknown"} -]
#endif
#endif
+#if defined (__HP_CXD_SPP)
+/* older hp ansi c, such as A.11.01.25171.gp, defines this */
+set compiler_info [join {hpcc __HP_CXD_SPP} -]
+#endif
+
#if defined (__HP_cc)
+/* newer hp ansi c, such as B.11.11.28706.gp, defines this */
set compiler_info [join {hpcc __HP_cc} -]
#endif