summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-pe
diff options
context:
space:
mode:
authorDave Korn <dave.korn@artimi.com>2009-05-21 16:28:45 +0000
committerDave Korn <dave.korn@artimi.com>2009-05-21 16:28:45 +0000
commitc344f845688ad74a0dbac376736abb71069fa0b1 (patch)
treebf695153653e6188b49faa11d95b17458e656ba9 /ld/testsuite/ld-pe
parentd9d2d8b6c09d51c13c6c26a7bfa6bc1bbddf574a (diff)
* ld-pe/aligncomm-1.c (_alloca): Add dummy definition to
satisfy final link on Windows targets when using gcc-3. * ld-pe/aligncomm-2.c (_alloca): Likewise. * ld-pe/aligncomm-3.c (_alloca): Likewise. * ld-pe/aligncomm-4.c (_alloca): Likewise.
Diffstat (limited to 'ld/testsuite/ld-pe')
-rwxr-xr-xld/testsuite/ld-pe/aligncomm-1.c6
-rwxr-xr-xld/testsuite/ld-pe/aligncomm-2.c6
-rwxr-xr-xld/testsuite/ld-pe/aligncomm-3.c6
-rwxr-xr-xld/testsuite/ld-pe/aligncomm-4.c6
4 files changed, 24 insertions, 0 deletions
diff --git a/ld/testsuite/ld-pe/aligncomm-1.c b/ld/testsuite/ld-pe/aligncomm-1.c
index 44f576e2d6..bff42b8855 100755
--- a/ld/testsuite/ld-pe/aligncomm-1.c
+++ b/ld/testsuite/ld-pe/aligncomm-1.c
@@ -17,3 +17,9 @@ void __main (void)
" .ascii \" -aligncomm:r,4\"\n"
" .text");
}
+
+#if defined (__CYGWIN__) || defined (__MINGW32__)
+void _alloca (void)
+{
+}
+#endif
diff --git a/ld/testsuite/ld-pe/aligncomm-2.c b/ld/testsuite/ld-pe/aligncomm-2.c
index 3b333625f0..61adc69f9e 100755
--- a/ld/testsuite/ld-pe/aligncomm-2.c
+++ b/ld/testsuite/ld-pe/aligncomm-2.c
@@ -18,3 +18,9 @@ void __main (void)
" .ascii \" -aligncomm:r,4\"\n"
" .text");
}
+
+#if defined (__CYGWIN__) || defined (__MINGW32__)
+void _alloca (void)
+{
+}
+#endif
diff --git a/ld/testsuite/ld-pe/aligncomm-3.c b/ld/testsuite/ld-pe/aligncomm-3.c
index 04fdfd1c60..ae0dbfb391 100755
--- a/ld/testsuite/ld-pe/aligncomm-3.c
+++ b/ld/testsuite/ld-pe/aligncomm-3.c
@@ -19,3 +19,9 @@ void __main (void)
" .ascii \" -aligncomm:r,4\"\n"
" .text");
}
+
+#if defined (__CYGWIN__) || defined (__MINGW32__)
+void _alloca (void)
+{
+}
+#endif
diff --git a/ld/testsuite/ld-pe/aligncomm-4.c b/ld/testsuite/ld-pe/aligncomm-4.c
index 854d9bab23..0c9e65d296 100755
--- a/ld/testsuite/ld-pe/aligncomm-4.c
+++ b/ld/testsuite/ld-pe/aligncomm-4.c
@@ -20,3 +20,9 @@ void __main (void)
" .ascii \" -aligncomm:r,4\"\n"
" .text");
}
+
+#if defined (__CYGWIN__) || defined (__MINGW32__)
+void _alloca (void)
+{
+}
+#endif