Mercurial > hg > CbC > CbC_llvm
view test/MC/ELF/common2.s @ 85:5e5d649e25d2
Update LLVM 3.7
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 19 Feb 2015 15:19:25 +0900 |
parents | 95c75e76d11b |
children | afa8332a0e37 |
line wrap: on
line source
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -s | FileCheck %s // Test that the common symbols are placed at the end of .bss. In this example // it causes .bss to have size 9 instead of 8. .local vimvardict .comm vimvardict,1,8 .bss .zero 1 .align 8 // CHECK: Section { // CHECK: Name: .bss (7) // CHECK-NEXT: Type: // CHECK-NEXT: Flags [ // CHECK: ] // CHECK-NEXT: Address: // CHECK-NEXT: Offset: // CHECK-NEXT: Size: 9 // CHECK-NEXT: Link: // CHECK-NEXT: Info: // CHECK-NEXT: AddressAlignment: // CHECK-NEXT: EntrySize: // CHECK-NEXT: }