* g++.old-deja/g++.other/null1.C (g): Add overload for long.
authorRichard Henderson <rth@cygnus.com>
Mon, 10 May 1999 17:42:01 +0000 (10:42 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Mon, 10 May 1999 17:42:01 +0000 (10:42 -0700)
From-SVN: r26873

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.other/null1.C

index 8f47a2272cccba526a093b55540597c22ff9cd33..ad7617cf77514b34a715ae7782dca5acf5c6eb79 100644 (file)
@@ -1,3 +1,7 @@
+1999-05-10  Richard Henderson  <rth@cygnus.com>
+
+       * g++.old-deja/g++.other/null1.C (g): Add overload for long.
+
 1999-05-10  Craig Burley  <craig@jcb-sc.com>
 
        * g77.f-torture/execute/erfc.f: Use small single-precision
index 1c72d1cf8f80d2d6e6f4649472093413e8ed2a5d..22d08a40aefa267a75505f619686118c456aaa6f 100644 (file)
@@ -3,6 +3,7 @@
 #include <cstddef>
 
 void g(int) {}
+void g(long) {}
 extern void g(void*);
 
 template <int I>