Add cdp/cdp2 instructions for thumb/thumb2
[oota-llvm.git] / test / MC / COFF / bss.s
1 // The purpose of this test is to verify that bss sections are emited correctly.\r
2 \r
3 // RUN: llvm-mc -filetype=obj -triple i686-pc-win32 %s | coff-dump.py | FileCheck %s\r
4 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-win32 %s | coff-dump.py | FileCheck %s\r
5 \r
6     .bss\r
7     .globl _g0\r
8     .align 4\r
9 _g0:\r
10     .long 0\r
11 \r
12 // CHECK:      Name           = .bss\r
13 // CHECK-NEXT: VirtualSize    = 0\r
14 // CHECK-NEXT: VirtualAddress = 0\r
15 // CHECK-NEXT: SizeOfRawData  = 4\r