aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/lto/pr69866_0.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/lto/pr69866_0.c')
-rw-r--r--gcc/testsuite/gcc.dg/lto/pr69866_0.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/testsuite/gcc.dg/lto/pr69866_0.c b/gcc/testsuite/gcc.dg/lto/pr69866_0.c
deleted file mode 100644
index 8c90030a57d..00000000000
--- a/gcc/testsuite/gcc.dg/lto/pr69866_0.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* { dg-lto-do link } */
-/* { dg-require-alias "" } */
-
-int _umh(int i)
-{
- return i+1;
-}
-
-int weaks(int i) __attribute__((weak, alias("_umh")));
-
-int main()
-{
- return weaks(10);
-}