[clang][Driver] Support simplified triple versions for config files (#111387)
[llvm-project.git] / llvm / test / Transforms / InstCombine / sprintf-void.ll
blob9abe328ee77ca3a4617ef647b8babe1a5c7f8620
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=instcombine -S | FileCheck %s
4 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
6 @hello_world = constant [13 x i8] c"hello world\0A\00"
8 declare void @sprintf(ptr, ptr, ...)
10 ; Check that a sprintf call, that would otherwise be optimized, but with
11 ; optimized out return type, doesn't crash the optimizer.
13 define void @test_simplify1(ptr %dst) {
14 ; CHECK-LABEL: @test_simplify1(
15 ; CHECK-NEXT:    call void (ptr, ptr, ...) @sprintf(ptr [[DST:%.*]], ptr nonnull @hello_world)
16 ; CHECK-NEXT:    ret void
18   call void (ptr, ptr, ...) @sprintf(ptr %dst, ptr @hello_world)
19   ret void