From e7bee929a557b43eb49ee419cfb804127973d224 Mon Sep 17 00:00:00 2001 From: Vasily Levchenko Date: Fri, 9 Sep 2016 11:56:19 +0300 Subject: [PATCH] foo() and bar() functions to play with dwarf --- experiments/dwarf-2/2-functions.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 experiments/dwarf-2/2-functions.c diff --git a/experiments/dwarf-2/2-functions.c b/experiments/dwarf-2/2-functions.c new file mode 100644 index 00000000000..917262e4b86 --- /dev/null +++ b/experiments/dwarf-2/2-functions.c @@ -0,0 +1,7 @@ +int foo() { + return 0; +} + +int bar() { + return 0; +}