diff options
Diffstat (limited to 'lit/Reproducer/Inputs')
-rw-r--r-- | lit/Reproducer/Inputs/GDBRemoteCapture.in | 6 | ||||
-rw-r--r-- | lit/Reproducer/Inputs/GDBRemoteReplay.in | 5 | ||||
-rw-r--r-- | lit/Reproducer/Inputs/simple.c | 19 |
3 files changed, 0 insertions, 30 deletions
diff --git a/lit/Reproducer/Inputs/GDBRemoteCapture.in b/lit/Reproducer/Inputs/GDBRemoteCapture.in deleted file mode 100644 index 8df7ca42fee0..000000000000 --- a/lit/Reproducer/Inputs/GDBRemoteCapture.in +++ /dev/null @@ -1,6 +0,0 @@ -breakpoint set -f simple.c -l 13 -run -bt -cont -reproducer status -reproducer generate diff --git a/lit/Reproducer/Inputs/GDBRemoteReplay.in b/lit/Reproducer/Inputs/GDBRemoteReplay.in deleted file mode 100644 index 1364c7e72764..000000000000 --- a/lit/Reproducer/Inputs/GDBRemoteReplay.in +++ /dev/null @@ -1,5 +0,0 @@ -reproducer status -breakpoint set -f simple.c -l 13 -run -bt -cont diff --git a/lit/Reproducer/Inputs/simple.c b/lit/Reproducer/Inputs/simple.c deleted file mode 100644 index a4585b380ca6..000000000000 --- a/lit/Reproducer/Inputs/simple.c +++ /dev/null @@ -1,19 +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> - -void foo() { - printf("testing\n"); -} - -int main (int argc, char const *argv[]) { - foo(); - return 0; -} |