diff options
author | Justin Bogner <mail@justinbogner.com> | 2015-01-24 17:39:32 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2015-01-24 17:39:32 +0000 |
commit | 2af264a44a59ad5725338bc9f889d1c84c275be7 (patch) | |
tree | 41ff211bb6973af91a6884dcfd648caec3058b40 /clang/test/CodeGen | |
parent | 9a4f2c55df8d34043d5d3e43ebb925c7fad36612 (diff) | |
download | bcm5719-llvm-2af264a44a59ad5725338bc9f889d1c84c275be7.tar.gz bcm5719-llvm-2af264a44a59ad5725338bc9f889d1c84c275be7.zip |
test: Remove two redundant lines from this test
The FileCheck already checks for these lines, no need to grep as well.
llvm-svn: 227006
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r-- | clang/test/CodeGen/address-space.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/test/CodeGen/address-space.c b/clang/test/CodeGen/address-space.c index 3e865fd3b77..9af91ff7087 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))); |