[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / SystemZ / memcmp-03.ll
blobeb11cb187e7d181af50b478987fb5720cfab2ea4
1 ; Test memcmp with 0 size.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
4 ; REQUIRES: asserts
6 declare i32 @memcmp(i8* nocapture, i8* nocapture, i64)
8 define hidden void @fun() {
9 ; CHECK-LABEL: fun
10 entry:
11   %len = extractvalue [2 x i64] zeroinitializer, 1
12   br i1 undef, label %end, label %call
14 call:
15   %res = tail call signext i32 @memcmp(i8* noundef undef, i8* noundef undef, i64 noundef %len)
16   unreachable
18 end:
19   unreachable