From 4d4f52221bf3769115fe731cec2bf5938e0c83dd Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 13 Apr 2006 17:28:28 +0000 Subject: [PATCH] Another case where a dead cast was causing the test to spuriously fail with the new front-end. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27663 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp b/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp index 5bc336c69d2..7711cff6d36 100644 --- a/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp +++ b/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | not grep cast +// RUN: %llvmgxx -xc++ %s -c -o - | opt -die | llvm-dis | not grep cast void foo(int*);