diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-12-11 22:46:56 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-12-11 22:46:56 +0000 |
commit | c67768fe2365e4759c54a26a9e8af987ee0bd09b (patch) | |
tree | 216c29cf6dc7959d56701cdac4b2d75104ab7139 /lldb/packages/Python/lldbsuite/test/functionalities/reproducer/gdb-remote/main.c | |
parent | 502865bddb19e71e3f842100b1f4d89fc5427dda (diff) | |
download | bcm5719-llvm-c67768fe2365e4759c54a26a9e8af987ee0bd09b.tar.gz bcm5719-llvm-c67768fe2365e4759c54a26a9e8af987ee0bd09b.zip |
Remove unused file
I removed the dotest-style reproducer test but forgot to delete the
source file. Thanks Jim for the heads up!
llvm-svn: 348901
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/reproducer/gdb-remote/main.c')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/reproducer/gdb-remote/main.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/reproducer/gdb-remote/main.c b/lldb/packages/Python/lldbsuite/test/functionalities/reproducer/gdb-remote/main.c deleted file mode 100644 index a4585b380ca..00000000000 --- a/lldb/packages/Python/lldbsuite/test/functionalities/reproducer/gdb-remote/main.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; -} |