16 lines · plain
1// The purpose of this test is to verify that bss sections are emitted correctly.2 3// RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s | llvm-readobj -S - | FileCheck %s4// RUN: llvm-mc -filetype=obj -triple x86_64-pc-win32 %s | llvm-readobj -S - | FileCheck %s5 6 .bss7 .globl _g08 .align 49_g0:10 .long 011 12// CHECK: Name: .bss13// CHECK-NEXT: VirtualSize: 014// CHECK-NEXT: VirtualAddress: 015// CHECK-NEXT: RawDataSize: 416