diff options
Diffstat (limited to 'lldb/test/load_unload/a.c')
-rw-r--r-- | lldb/test/load_unload/a.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lldb/test/load_unload/a.c b/lldb/test/load_unload/a.c new file mode 100644 index 00000000000..9d4711772dd --- /dev/null +++ b/lldb/test/load_unload/a.c @@ -0,0 +1,15 @@ +//===-- a.c -----------------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +extern int b_function (); + +int +a_function () +{ + return b_function (); +} |