From 28e0b48b2a8575bbef060815a907d64890b3f789 Mon Sep 17 00:00:00 2001 From: "Andrew V. Tischenko" Date: Tue, 10 Apr 2018 15:45:43 +0000 Subject: [PATCH] I removed the failed test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@329714 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Frontend/ftime-report-template-decl.cpp | 147 ------------------- 1 file changed, 147 deletions(-) delete mode 100644 test/Frontend/ftime-report-template-decl.cpp diff --git a/test/Frontend/ftime-report-template-decl.cpp b/test/Frontend/ftime-report-template-decl.cpp deleted file mode 100644 index d9d19556b4..0000000000 --- a/test/Frontend/ftime-report-template-decl.cpp +++ /dev/null @@ -1,147 +0,0 @@ -// RUN: %clang %s -S -o - -ftime-report 2>&1 | FileCheck %s -// RUN: %clang %s -S -o - -fdelayed-template-parsing -DDELAYED_TEMPLATE_PARSING -ftime-report 2>&1 | FileCheck %s - -// Template function declarations -template -void foo(); -template -void foo(); - -// Template function definitions. -template -void foo() {} - -// Template class (forward) declarations -template -struct A; -template -struct b; -template -struct C; -template -struct D; - -// Forward declarations with default parameters? -template -class X1; -template -class X2; - -// Forward declarations w/template template parameters -template