mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-14 17:36:29 +00:00

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294753 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
238 B
LLVM
12 lines
238 B
LLVM
; RUN: llc -march=hexagon < %s | FileCheck %s
|
|
;
|
|
; Either and or zxtb.
|
|
; CHECK: r0 = and(r1,#255)
|
|
|
|
%struct.t0 = type { i32 }
|
|
|
|
define i32 @foo(%struct.t0* byval align 8 %s, i8 zeroext %t, i8 %u) #0 {
|
|
%a = zext i8 %u to i32
|
|
ret i32 %a
|
|
}
|