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