[X86] combineTargetShuffle - commute VPERMV3 shuffles so any load is on the RHS
[llvm-project.git] / llvm / test / CodeGen / SystemZ / memchr-nobuiltin.ll
blobe8a56524d114742f3c2351ea5e2ece779f29f596
1 ; Test that memchr won't be converted to SRST if calls are
2 ; marked with nobuiltin, eg. for sanitizers.
4 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
6 declare ptr@memchr(ptr %src, i16 %char, i32 %len)
8 ; Test a simple forwarded call.
9 define ptr@f1(ptr %src, i16 %char, i32 %len) {
10 ; CHECK-LABEL: f1:
11 ; CHECK-NOT: srst
12 ; CHECK: brasl %r14, memchr
13 ; CHECK: br %r14
14   %res = call ptr@memchr(ptr %src, i16 %char, i32 %len) nobuiltin
15   ret ptr %res