From 7567699364f8733d5eb66e528cdb70bb15ded261 Mon Sep 17 00:00:00 2001 From: Alp Toker Date: Sun, 8 Dec 2013 18:49:11 +0000 Subject: [PATCH] There's no such thing as %clang_cc1_only These were being substituted into approximately the following: clang -cc1 -internal-isystem ../lib/clang/3.5/include_only git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@196730 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Sema/decl-in-prototype.c | 2 +- test/Sema/fn-ptr-as-fn-prototype.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Sema/decl-in-prototype.c b/test/Sema/decl-in-prototype.c index 05b8e0a1c3..877f887392 100644 --- a/test/Sema/decl-in-prototype.c +++ b/test/Sema/decl-in-prototype.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1_only -verify %s +// RUN: %clang_cc1 -fsyntax-only -verify %s const int AA = 5; diff --git a/test/Sema/fn-ptr-as-fn-prototype.c b/test/Sema/fn-ptr-as-fn-prototype.c index cf95c97746..4b01b1316e 100644 --- a/test/Sema/fn-ptr-as-fn-prototype.c +++ b/test/Sema/fn-ptr-as-fn-prototype.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1_only -ast-print %s | FileCheck %s +// RUN: %clang_cc1 -ast-print %s | FileCheck %s // This testcase checks the functionality of // Sema::ActOn{Start,End}FunctionDeclarator, specifically checking that -- 2.40.0