r196738 - Remove an old stdio.h include from the invalid-array test
Alp Toker
alp at nuanti.com
Sun Dec 8 14:37:30 PST 2013
Author: alp
Date: Sun Dec 8 16:37:30 2013
New Revision: 196738
URL: http://llvm.org/viewvc/llvm-project?rev=196738&view=rev
Log:
Remove an old stdio.h include from the invalid-array test
This should get it up and running on win and other builders without system
headers.
Modified:
cfe/trunk/test/Sema/crash-invalid-array.c
Modified: cfe/trunk/test/Sema/crash-invalid-array.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/crash-invalid-array.c?rev=196738&r1=196737&r2=196738&view=diff
==============================================================================
--- cfe/trunk/test/Sema/crash-invalid-array.c (original)
+++ cfe/trunk/test/Sema/crash-invalid-array.c Sun Dec 8 16:37:30 2013
@@ -1,8 +1,6 @@
-// RUN: %clang_cc1 -triple x86_64-apple-darwin -fsyntax-only -verify %s
+// RUN: %clang_cc1 -triple=x86_64-apple-darwin -fsyntax-only -verify %s
// PR6913
-#include <stdio.h>
-
int main()
{
int x[10][10];
More information about the cfe-commits
mailing list