1; RUN: llc < %s -mtriple=x86_64 | FileCheck %s --check-prefix=BSS 2 3; BSS: .bss 4; BSS-NEXT: .globl a 5; BSS: .section .tbss,"awT",@nobits 6; BSS-NEXT: .globl b 7 8; RUN: llc < %s -mtriple=x86_64 -nozero-initialized-in-bss | FileCheck %s --check-prefix=DATA 9 10; DATA: .data 11; DATA-NEXT: .globl a 12; DATA: .section .tdata,"awT",@progbits 13; DATA-NEXT: .globl b 14 15@a = global i32 0 16@b = thread_local global i32 0 17