Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / NVPTX / zeroext-32bit.ll
blob03a6626b9af2aa9186c1871cf319018a5872ee74
1 ; RUN: llc < %s -march=nvptx64 -mcpu=sm_30 -verify-machineinstrs | FileCheck %s
2 ; RUN: %if ptxas %{ llc < %s -march=nvptx64 -mcpu=sm_30 -verify-machineinstrs | %ptxas-verify %}
4 ; The zeroext attribute below should be silently ignored because
5 ; we can pass a 32-bit integer across a function call without
6 ; needing to extend it.
8 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v16:16:16-v32:32:32-v64:64:64-v128:128:128-n16:32:64"
9 target triple = "nvptx64-unknown-cuda"
11 ; CHECK-LABEL: .visible .func zeroext_test
12 ; CHECK-NOT: cvt.u32.u16
13 define void @zeroext_test()  {
14   tail call void @call1(i32 zeroext 0)
15   ret void
18 declare void @call1(i32 zeroext)
20 ; CHECK-LABEL: .visible .func signext_test
21 ; CHECK-NOT: cvt.s32.s16
22 define void @signext_test()  {
23   tail call void @call2(i32 zeroext 0)
24   ret void
27 declare void @call2(i32 zeroext)