Heuristic: If the number of operands in the alias are more than the number of
[llvm/stm8.git] / test / MC / COFF / bss.s
blob3bed13d4aac96430d040a8b0ad5070b71f2d4ceb
1 // The purpose of this test is to verify that bss sections are emited correctly.
3 // RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s | coff-dump.py | FileCheck %s
4 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-win32 %s | coff-dump.py | FileCheck %s
6 .bss
7 .globl _g0
8 .align 4
9 _g0:
10 .long 0
12 // CHECK: Name = .bss
13 // CHECK-NEXT: VirtualSize = 0
14 // CHECK-NEXT: VirtualAddress = 0
15 // CHECK-NEXT: SizeOfRawData = 4