about summary refs log tree commit diff
path: root/elf/tst-nodelete-uniquemod.cc
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-nodelete-uniquemod.cc')
-rw-r--r--elf/tst-nodelete-uniquemod.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/elf/tst-nodelete-uniquemod.cc b/elf/tst-nodelete-uniquemod.cc
deleted file mode 100644
index 632b303d58..0000000000
--- a/elf/tst-nodelete-uniquemod.cc
+++ /dev/null
@@ -1,14 +0,0 @@
-extern int not_exist (void);
-
-inline int make_unique (void)
-{
-  /* Static variables in inline functions and classes
-     generate STB_GNU_UNIQUE symbols.  */
-  static int unique;
-  return ++unique;
-}
-
-int foo (void)
-{
-  return make_unique () + not_exist ();
-}