[cfe-commits] r100827 - /cfe/trunk/test/Sema/warn-unused-parameters.c

Ted Kremenek kremenek at apple.com
Thu Apr 8 16:17:17 PDT 2010


Author: kremenek
Date: Thu Apr  8 18:17:16 2010
New Revision: 100827

URL: http://llvm.org/viewvc/llvm-project?rev=100827&view=rev
Log:
Use '%clang_cc1' instead of '%clang' to make the warning output more consistent across
platforms (for this test).

Modified:
    cfe/trunk/test/Sema/warn-unused-parameters.c

Modified: cfe/trunk/test/Sema/warn-unused-parameters.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/warn-unused-parameters.c?rev=100827&r1=100826&r2=100827&view=diff
==============================================================================
--- cfe/trunk/test/Sema/warn-unused-parameters.c (original)
+++ cfe/trunk/test/Sema/warn-unused-parameters.c Thu Apr  8 18:17:16 2010
@@ -1,5 +1,5 @@
-// RUN: %clang -fblocks -fsyntax-only -Wunused-parameter %s 2>&1 | FileCheck %s
-// RUN: %clang -fblocks -fsyntax-only -Wunused %s 2>&1 | FileCheck -check-prefix=CHECK-unused %s
+// RUN: %clang_cc1 -fblocks -fsyntax-only -Wunused-parameter %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -fblocks -fsyntax-only -Wunused %s 2>&1 | FileCheck -check-prefix=CHECK-unused %s
 
 int f0(int x,
        int y,





More information about the cfe-commits mailing list