[Clang] ensure mangled names are valid identifiers before being suggested in ifunc...
[llvm-project.git] / llvm / test / CodeGen / WebAssembly / divrem-constant.ll
blob14fe5b448da5b3b55047c9ff7e22951fcfdfa4e1
1 ; RUN: llc < %s -asm-verbose=false -wasm-keep-registers | FileCheck %s
3 ; Test that integer div and rem by constant are optimized appropriately.
5 target triple = "wasm32-unknown-unknown"
7 ; CHECK-LABEL: test_udiv_2:
8 ; CHECK: i32.shr_u
9 define i32 @test_udiv_2(i32 %x) {
10     %t = udiv i32 %x, 2
11     ret i32 %t
14 ; CHECK-LABEL: test_udiv_5:
15 ; CHECK: i32.div_u
16 define i32 @test_udiv_5(i32 %x) {
17     %t = udiv i32 %x, 5
18     ret i32 %t
21 ; CHECK-LABEL: test_sdiv_2:
22 ; CHECK: i32.div_s
23 define i32 @test_sdiv_2(i32 %x) {
24     %t = sdiv i32 %x, 2
25     ret i32 %t
28 ; CHECK-LABEL: test_sdiv_5:
29 ; CHECK: i32.div_s
30 define i32 @test_sdiv_5(i32 %x) {
31     %t = sdiv i32 %x, 5
32     ret i32 %t
35 ; CHECK-LABEL: test_urem_2:
36 ; CHECK: i32.and
37 define i32 @test_urem_2(i32 %x) {
38     %t = urem i32 %x, 2
39     ret i32 %t
42 ; CHECK-LABEL: test_urem_5:
43 ; CHECK: i32.rem_u
44 define i32 @test_urem_5(i32 %x) {
45     %t = urem i32 %x, 5
46     ret i32 %t
49 ; CHECK-LABEL: test_srem_2:
50 ; CHECK: i32.rem_s
51 define i32 @test_srem_2(i32 %x) {
52     %t = srem i32 %x, 2
53     ret i32 %t
56 ; CHECK-LABEL: test_srem_5:
57 ; CHECK: i32.rem_s
58 define i32 @test_srem_5(i32 %x) {
59     %t = srem i32 %x, 5
60     ret i32 %t