From 0d35749f76bed0dbfe021d413f349530cd91c69f Mon Sep 17 00:00:00 2001 From: joerg Date: Wed, 13 Nov 2019 22:19:09 +0000 Subject: Mark old LLVM instance as dead. --- .../clang/test/CodeGenCXX/debug-info-template-array.cpp | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp (limited to 'external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp') diff --git a/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp b/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp deleted file mode 100644 index 305327bbe09..00000000000 --- a/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-template-array.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// RUN: %clang -emit-llvm -g -S %s -o - -// PR13531 -template -struct unique_ptr { - unique_ptr() {} -}; - -template -struct Vertex {}; - -void crash() // Asserts -{ - unique_ptr[]> v = unique_ptr[]>(); -} -- cgit