Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / BPF / objdump_nop.ll
blob219b51bcb1decba2ceb26cc8d9b6a9e431256830
1 ; RUN: llc -mtriple=bpfel -filetype=obj -o - %s | llvm-objdump -d - | FileCheck %s
3 ; Source:
4 ;   int test() {
5 ;     asm volatile("r0 = r0" ::);
6 ;     return 0;
7 ;   }
8 ; Compilation flag:
9 ;   clang -target bpf -O2 -S -emit-llvm t.c
11 ; Function Attrs: nounwind
12 define dso_local i32 @test() local_unnamed_addr {
13 entry:
14   tail call void asm sideeffect "r0 = r0", ""()
15   ret i32 0
17 ; CHECK-LABEL: test
18 ; CHECK:       r0 = r0
19 ; CHECK:       r0 = 0