64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
10 lines
220 B
ArmAsm
10 lines
220 B
ArmAsm
// RUN: not llvm-mc -filetype=obj -triple arm-linux-gnu %s -o %t 2>%t.out
|
|
// RUN: FileCheck --input-file=%t.out %s
|
|
// CHECK: non-zero initializer found in section '.bss'
|
|
.bss
|
|
.globl a
|
|
.align 2
|
|
a:
|
|
.long 1
|
|
.size a, 4
|