summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/testsuite/ld-cdtest/cdtest-foo.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index b86e203895..c02f5e8e3a 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,5 +1,9 @@
2016-12-03 Alan Modra <amodra@gmail.com>
+ * testsuite/ld-cdtest/cdtest-foo.cc: Test for __GNUG__ >= 2.
+
+2016-12-03 Alan Modra <amodra@gmail.com>
+
* ldexp.c (try_copy_symbol_type): Remove unnecessary check.
2016-12-02 Nick Clifton <nickc@redhat.com>
diff --git a/ld/testsuite/ld-cdtest/cdtest-foo.cc b/ld/testsuite/ld-cdtest/cdtest-foo.cc
index d8e5cbe24c..7e6bd75cab 100644
--- a/ld/testsuite/ld-cdtest/cdtest-foo.cc
+++ b/ld/testsuite/ld-cdtest/cdtest-foo.cc
@@ -5,7 +5,7 @@
// We don't use header files, since we only want to see, whether the
// compiler is installed properly.
//
-#if (__GNUG__ == 2)
+#if __GNUG__ >= 2
typedef __SIZE_TYPE__ size_t;
#else
typedef unsigned int size_t;