From: Justin Bogner Date: Sat, 24 Jan 2015 17:39:32 +0000 (+0000) Subject: test: Remove two redundant lines from this test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b1db2fecc4521e98c12f17de9c5c3d529b6b0c7;p=clang test: Remove two redundant lines from this test The FileCheck already checks for these lines, no need to grep as well. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@227006 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/address-space.c b/test/CodeGen/address-space.c index 3e865fd3b7..9af91ff708 100644 --- a/test/CodeGen/address-space.c +++ b/test/CodeGen/address-space.c @@ -1,7 +1,4 @@ // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm < %s | FileCheck %s -// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm < %s | grep 'load.*addrspace(2).. @A' -// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm < %s | grep 'load.*addrspace(2).. @B' - // CHECK: @foo = common addrspace(1) global int foo __attribute__((address_space(1)));