Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / test / MC / ELF / lcomm.s
1 // RUN: llvm-mc -triple i386-pc-linux-gnu %s -filetype=obj -o - | llvm-readobj -t | FileCheck %s
2
3 .lcomm A, 5
4 .lcomm B, 32 << 20
5
6 // CHECK:        Symbol {
7 // CHECK:          Name: A
8 // CHECK-NEXT:     Value: 0x0
9 // CHECK-NEXT:     Size: 5
10 // CHECK-NEXT:     Binding: Local
11 // CHECK-NEXT:     Type: Object
12 // CHECK-NEXT:     Other: 0
13 // CHECK-NEXT:     Section: .bss
14 // CHECK-NEXT:   }
15 // CHECK:        Symbol {
16 // CHECK:          Name: B
17 // CHECK-NEXT:     Value: 0x5
18 // CHECK-NEXT:     Size: 33554432
19 // CHECK-NEXT:     Binding: Local
20 // CHECK-NEXT:     Type: Object
21 // CHECK-NEXT:     Other: 0
22 // CHECK-NEXT:     Section: .bss
23 // CHECK-NEXT:   }