summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2020-06-11 09:27:41 +0100
committerNick Clifton <nickc@redhat.com>2020-06-11 09:27:41 +0100
commit928055a3694ed97e2f8f5926acdde4039e86982d (patch)
treeca54962b815acf2e667463f089707a69100a1015
parentf0aa30258af17ab0234951cbf9644837a99036e5 (diff)
downloadbinutils-gdb-928055a3694ed97e2f8f5926acdde4039e86982d.tar.gz
Fix a compile time warning in the linker testsuite when compiling using clang.
* testsuite/ld-elf/pr26094-1b.c (main): Change return type to int.
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/testsuite/ld-elf/pr26094-1b.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 18fec01e5ab..c8a6cbc7e5b 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2020-06-11 Nick Clifton <nickc@redhat.com>
+
+ * testsuite/ld-elf/pr26094-1b.c (main): Change return type to
+ int.
+
2020-06-10 Alan Modra <amodra@gmail.com>
* testsuite/ld-elf/linux-x86.exp: Build tests when non-native.
diff --git a/ld/testsuite/ld-elf/pr26094-1b.c b/ld/testsuite/ld-elf/pr26094-1b.c
index 650a36fd893..9d34049984a 100644
--- a/ld/testsuite/ld-elf/pr26094-1b.c
+++ b/ld/testsuite/ld-elf/pr26094-1b.c
@@ -1,6 +1,6 @@
extern void *foo();
-void main()
+int main (void)
{
- foo();
-} \ No newline at end of file
+ foo(); return 0;
+}