summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/target_command/a.c
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/target_command/a.c')
-rw-r--r--packages/Python/lldbsuite/test/functionalities/target_command/a.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/target_command/a.c b/packages/Python/lldbsuite/test/functionalities/target_command/a.c
deleted file mode 100644
index 9d0706a0862d..000000000000
--- a/packages/Python/lldbsuite/test/functionalities/target_command/a.c
+++ /dev/null
@@ -1,16 +0,0 @@
-//===-- main.c --------------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-#include <stdio.h>
-
-int main(int argc, const char* argv[])
-{
- int *null_ptr = 0;
- printf("Hello, segfault!\n");
- printf("Now crash %d\n", *null_ptr); // Crash here.
-}