mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
5f2f5fa638
that contain only letters, digits and the characters "_" and ".". llvm-svn: 127028
9 lines
221 B
LLVM
9 lines
221 B
LLVM
; Test to make sure that bss sections are printed with '.section' directive.
|
|
; RUN: llc < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
|
|
|
|
@A = global i32 0
|
|
|
|
; CHECK: .section .bss,"aw",@nobits
|
|
; CHECK: .globl A
|
|
|