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: http://review.tizen.org/git/?a=commitdiff_plain;h=2af264a44a59ad5725338bc9f889d1c84c275be7;p=platform%2Fupstream%2Fllvm.git test: Remove two redundant lines from this test The FileCheck already checks for these lines, no need to grep as well. llvm-svn: 227006 --- diff --git a/clang/test/CodeGen/address-space.c b/clang/test/CodeGen/address-space.c index 3e865fd..9af91ff 100644 --- a/clang/test/CodeGen/address-space.c +++ b/clang/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)));