Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / zero-initialized-in-bss.ll
blob2feee54856e2c3cfab8354783b62bcc052cd0605
1 ; RUN: llc < %s -mtriple=x86_64 | FileCheck %s --check-prefix=BSS
3 ; BSS:      .bss
4 ; BSS-NEXT: .globl a
5 ; BSS:      .section .tbss,"awT",@nobits
6 ; BSS-NEXT: .globl b
8 ; RUN: llc < %s -mtriple=x86_64 -nozero-initialized-in-bss | FileCheck %s --check-prefix=DATA
10 ; DATA:      .data
11 ; DATA-NEXT: .globl a
12 ; DATA:      .section .tdata,"awT",@progbits
13 ; DATA-NEXT: .globl b
15 @a = global i32 0
16 @b = thread_local global i32 0