Bruno Cardoso Lopes | fdf229e | 2009-08-13 23:30:21 +0000 | [diff] [blame] | 1 | ; Test to make sure that bss sections are printed with '.section' directive. |
Dan Gohman | fce288f | 2009-09-09 00:09:15 +0000 | [diff] [blame] | 2 | ; RUN: llc < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s |
Bruno Cardoso Lopes | fdf229e | 2009-08-13 23:30:21 +0000 | [diff] [blame] | 3 | |
| 4 | @A = global i32 0 |
| 5 | |
| 6 | ; CHECK: .section .bss,"aw",@nobits |
Chris Lattner | 74bfe21 | 2010-01-19 05:38:33 +0000 | [diff] [blame^] | 7 | ; CHECK: .globl A |
Bruno Cardoso Lopes | fdf229e | 2009-08-13 23:30:21 +0000 | [diff] [blame] | 8 | |