about summary refs log tree commit diff
path: root/elf/testobj2.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/testobj2.c')
-rw-r--r--elf/testobj2.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/elf/testobj2.c b/elf/testobj2.c
new file mode 100644
index 0000000000..5c89d33c8c
--- /dev/null
+++ b/elf/testobj2.c
@@ -0,0 +1,11 @@
+int
+obj2func1 (int a __attribute__ ((unused)))
+{
+  return 43;
+}
+
+int
+obj2func2 (int a)
+{
+  return obj1func1 (a) + 10;
+}