From 232c8b4d260085731b12bca90ab82aaebbae5f98 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 9 Apr 2010 19:03:31 +0000 Subject: [PATCH] Make sure this test tests something. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100879 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/CellSPU/bss.ll | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test/CodeGen/CellSPU/bss.ll b/test/CodeGen/CellSPU/bss.ll index 2a5f786baea..327800d09cb 100644 --- a/test/CodeGen/CellSPU/bss.ll +++ b/test/CodeGen/CellSPU/bss.ll @@ -1,7 +1,11 @@ -; RUN: llc < %s -march=cellspu > %t1.s -; RUN: grep "\.section" %t1.s | grep "\.bss" | count 1 -; CHECK-NOT: .lcomm +; RUN: llc < %s -march=cellspu | FileCheck %s @bssVar = global i32 zeroinitializer +; CHECK: .section .bss +; CHECK-NEXT: .globl + @localVar= internal global i32 zeroinitializer +; CHECK-NOT: .lcomm +; CHECK: .local +; CHECK-NEXT: .comm -- 2.11.0