diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/main.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/main.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/main.cpp b/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/main.cpp deleted file mode 100644 index f6ec2b86064..00000000000 --- a/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/main.cpp +++ /dev/null @@ -1,16 +0,0 @@ -//===-- main.cpp ------------------------------------------------*- C++ -*-===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -#include <stdio.h> -#include <stdint.h> -int main () -{ - int32_t myvar = -1; - printf ("%d\n", myvar); // Set break point at this line. - return myvar+1; -} |