view test/MC/ELF/lcomm.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 54457678186b
children afa8332a0e37
line wrap: on
line source

// RUN: llvm-mc -triple i386-pc-linux-gnu %s -filetype=obj -o - | llvm-readobj -t | FileCheck %s

.lcomm A, 5
.lcomm B, 32 << 20

// CHECK:        Symbol {
// CHECK:          Name: A
// CHECK-NEXT:     Value: 0x0
// CHECK-NEXT:     Size: 5
// CHECK-NEXT:     Binding: Local
// CHECK-NEXT:     Type: Object
// CHECK-NEXT:     Other: 0
// CHECK-NEXT:     Section: .bss (0x3)
// CHECK-NEXT:   }
// CHECK:        Symbol {
// CHECK:          Name: B
// CHECK-NEXT:     Value: 0x5
// CHECK-NEXT:     Size: 33554432
// CHECK-NEXT:     Binding: Local
// CHECK-NEXT:     Type: Object
// CHECK-NEXT:     Other: 0
// CHECK-NEXT:     Section: .bss (0x3)
// CHECK-NEXT:   }