aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2002-06-25-FWriteInterfaceFailure.c')
-rw-r--r--test/CodeGen/2002-06-25-FWriteInterfaceFailure.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c b/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c
new file mode 100644
index 000000000000..24c67d1520a1
--- /dev/null
+++ b/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");
+}