summaryrefslogtreecommitdiff
path: root/test/LLVMC/C/opt-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/LLVMC/C/opt-test.c')
-rw-r--r--test/LLVMC/C/opt-test.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/LLVMC/C/opt-test.c b/test/LLVMC/C/opt-test.c
deleted file mode 100644
index 7924def203..0000000000
--- a/test/LLVMC/C/opt-test.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- * Check that the -opt switch works.
- * RUN: llvmc %s -opt -o %t
- * RUN: %abs_tmp | grep hello
- * XFAIL: vg_leak
- */
-
-#include <stdio.h>
-
-int main() {
- printf("hello\n");
- return 0;
-}