aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/memchr-nobuiltin.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/memchr-nobuiltin.ll')
-rw-r--r--test/CodeGen/SystemZ/memchr-nobuiltin.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/SystemZ/memchr-nobuiltin.ll b/test/CodeGen/SystemZ/memchr-nobuiltin.ll
deleted file mode 100644
index f94e1162ae4e..000000000000
--- a/test/CodeGen/SystemZ/memchr-nobuiltin.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; Test that memchr won't be converted to SRST if calls are
-; marked with nobuiltin, eg. for sanitizers.
-;
-; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
-
-declare i8 *@memchr(i8 *%src, i16 %char, i32 %len)
-
-; Test a simple forwarded call.
-define i8 *@f1(i8 *%src, i16 %char, i32 %len) {
-; CHECK-LABEL: f1:
-; CHECK-NOT: srst
-; CHECK: brasl %r14, memchr
-; CHECK: br %r14
- %res = call i8 *@memchr(i8 *%src, i16 %char, i32 %len) nobuiltin
- ret i8 *%res
-}