diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/main.cpp')
-rw-r--r-- | packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/main.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/main.cpp b/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/main.cpp new file mode 100644 index 0000000..7f2d524 --- /dev/null +++ b/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/main.cpp @@ -0,0 +1,15 @@ +//===-- main.cpp ------------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +int +main(int argc, char const *argv[]) +{ + int a = 10; + return 0; //BP_return +} |