summaryrefslogtreecommitdiff
path: root/lit/Reproducer/Inputs/simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'lit/Reproducer/Inputs/simple.c')
-rw-r--r--lit/Reproducer/Inputs/simple.c19
1 files changed, 0 insertions, 19 deletions
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;
-}