You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
421 B
17 lines
421 B
; RUN: llc < %s -mtriple=x86_64 | FileCheck %s --check-prefix=BSS
|
|
|
|
; BSS: .bss
|
|
; BSS-NEXT: .globl a
|
|
; BSS: .section .tbss,"awT",@nobits
|
|
; BSS-NEXT: .globl b
|
|
|
|
; RUN: llc < %s -mtriple=x86_64 -nozero-initialized-in-bss | FileCheck %s --check-prefix=DATA
|
|
|
|
; DATA: .data
|
|
; DATA-NEXT: .globl a
|
|
; DATA: .section .tdata,"awT",@progbits
|
|
; DATA-NEXT: .globl b
|
|
|
|
@a = global i32 0
|
|
@b = thread_local global i32 0
|