1 # RUN: llvm-mc -filetype=obj -triple=x86_64-windows-msvc %s -o %t.obj
2 # RUN: llvm-objdump -h %t.obj | FileCheck %s
3 # RUN: obj2yaml %t.obj | yaml2obj -o %t.2.obj
4 # RUN: llvm-objdump -h %t.2.obj | FileCheck %s
6 # CHECK: Idx Name Size VMA Type
7 # CHECK: .bss 00000004 0000000000000000 BSS
9 # Before PR41836, Size would be 0 after yaml conversion.