summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c')
-rw-r--r--clang/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c b/clang/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c
new file mode 100644
index 0000000..24c67d1
--- /dev/null
+++ b/clang/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c
@@ -0,0 +1,9 @@
+// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
+
+typedef struct _IO_FILE FILE;
+extern FILE *stderr;
+int fprintf(FILE * restrict stream, const char * restrict format, ...);
+
+void test() {
+ fprintf(stderr, "testing\n");
+}