mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
b2b4acd757
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97991 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
378 B
ArmAsm
16 lines
378 B
ArmAsm
// RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump | FileCheck %s
|
|
//
|
|
// Check that the section itself is aligned.
|
|
|
|
.byte 0
|
|
|
|
.zerofill __DATA,__bss,_a,1,0
|
|
.zerofill __DATA,__bss,_b,4,4
|
|
|
|
// CHECK: # Symbol 0
|
|
// CHECK: ('n_value', 16)
|
|
// CHECK: ('_string', '_a')
|
|
// CHECK: # Symbol 1
|
|
// CHECK: ('n_value', 32)
|
|
// CHECK: ('_string', '_b')
|