Add prototype to gold tests.
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 9 Apr 2010 18:05:43 +0000 (18:05 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 9 Apr 2010 18:05:43 +0000 (18:05 +0000)
2010-04-09  H.J. Lu  <hongjiu.lu@intel.com>

* testsuite/plugin_common_test_1.c (foo): Add prototype.
* testsuite/plugin_common_test_2.c (foo): Likewise.

gold/ChangeLog
gold/testsuite/plugin_common_test_1.c
gold/testsuite/plugin_common_test_2.c

index e9b79d4b462851565057471d1019298397974b2c..f668eadcc5811098a735290eafb4bc0da2585a1d 100644 (file)
@@ -1,3 +1,8 @@
+2010-04-09  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * testsuite/plugin_common_test_1.c (foo): Add prototype.
+       * testsuite/plugin_common_test_2.c (foo): Likewise.
+
 2010-04-08  Doug Kwan  <dougkwan@google.com>
 
        * merge.cc (Output_merge_data::set_final_data_size): Handle empty
index cf9ca2f78ee69f2764c8dee7d22b7f5820712439..262c298597d83a829d1c5444314327b34558519b 100644 (file)
@@ -32,6 +32,8 @@ extern int c3;
 int c4;
 int c5 = 50;
 
+extern void foo (void);
+
 int
 main (int argc __attribute__ ((unused)), char** argv __attribute__ ((unused)))
 {
index 149fd456d805f452b80fae15eac23f8b9b43d665..54139ceb9c56889301d1e3952796188af4d40d53 100644 (file)
@@ -32,8 +32,10 @@ int c3;
 int c4 = 40;
 int c5;
 
+extern void foo (void);
+
 void
-foo ()
+foo (void)
 {
   c1 = 10;
   c2 = 20;