From 67e218b53a309ba3bdb3d7bdc0b8e05bc0354b06 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sun, 20 Mar 2005 18:56:01 +0000 Subject: 2.3.4-2.fc3.5 --- elf/unload4mod3.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 elf/unload4mod3.c (limited to 'elf/unload4mod3.c') diff --git a/elf/unload4mod3.c b/elf/unload4mod3.c new file mode 100644 index 0000000000..4b280bc05b --- /dev/null +++ b/elf/unload4mod3.c @@ -0,0 +1,16 @@ +#include + +int +__attribute__((noinline)) +mod3fn1 (int x) +{ + puts ("in mod3fn1"); + return x + 6; +} + +int +mod3fn2 (int x) +{ + puts ("in mod3fn2"); + return mod3fn1 (x / 2) * 2; +} -- cgit v1.2.3