[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / InstCombine / strncmp-wrong-datalayout.ll
blob5c7c49a97085b422faaa684731c860f2a937a91c
1 ; Test that the strncpy simplification doesn't crash if datalayout specifies
2 ; 64 bit pointers while length is a 32 bit argument
4 ; RUN: opt < %s -instcombine -S | FileCheck %s
6 target datalayout = "e-p:64:64:64"
8 declare i32 @strncmp(i8*, i8*, i32)
10 define i32 @test6(i8* %str1, i8* %str2) {
11 ; CHECK-LABEL: @test6(
12 ; CHECK: call i32 @strncmp(i8* %str1, i8* %str2, i32 1)
14   %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 1)
15   ret i32 %temp1