summaryrefslogtreecommitdiffstats
path: root/lldb/lit/ObjectFile/ELF/Inputs/minidebuginfo-main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/lit/ObjectFile/ELF/Inputs/minidebuginfo-main.c')
-rw-r--r--lldb/lit/ObjectFile/ELF/Inputs/minidebuginfo-main.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lldb/lit/ObjectFile/ELF/Inputs/minidebuginfo-main.c b/lldb/lit/ObjectFile/ELF/Inputs/minidebuginfo-main.c
deleted file mode 100644
index 8f11dafece6..00000000000
--- a/lldb/lit/ObjectFile/ELF/Inputs/minidebuginfo-main.c
+++ /dev/null
@@ -1,12 +0,0 @@
-// This function will be embedded within the .symtab section of the
-// .gnu_debugdata section.
-int multiplyByFour(int num) { return num * 4; }
-
-// This function will be embedded within the .dynsym section of the main binary.
-int multiplyByThree(int num) { return num * 3; }
-
-int main(int argc, char *argv[]) {
- int x = multiplyByThree(argc);
- int y = multiplyByFour(x);
- return y;
-}
OpenPOWER on IntegriCloud