Add a test that I forgot to add with a previous commit.
[oota-llvm.git] / test / MC / ELF / zero.s
1 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump  --dump-section-data | FileCheck %s
2
3 .zero 4
4
5 // CHECK: ('sh_name', 1) # '.text'
6 // CHECK: ('sh_type', 1)
7 // CHECK: ('sh_flags', 6)
8 // CHECK: ('sh_addr', 0)
9 // CHECK: ('sh_offset', 64)
10 // CHECK: ('sh_size', 4)
11 // CHECK: ('sh_link', 0)
12 // CHECK: ('sh_info', 0)
13 // CHECK: ('sh_addralign', 4)
14 // CHECK: ('sh_entsize', 0)
15 // CHECK: ('_section_data', '00000000')