llvm-project/llvm/test/Transforms/InstCombine/stdiocall-bad-sig.ll

63 lines
1.7 KiB
LLVM

; Verify that calls to known stdio library functions declared with
; incompatible signatures are handled gracefully and without aborting.
;
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -passes=instcombine -opaque-pointers -S | FileCheck %s
declare i32 @fwrite(i8*, i64, i64, ptr)
declare i8 @fputc(ptr, ptr)
declare void @printf(ptr)
declare i8 @fprintf(ptr, ptr)
declare i8 @sprintf(ptr, ptr)
@ca1 = constant [1 x i8] c"1"
@pcnt_s = constant [3 x i8] c"%s\00"
; Verify that a call to fwrite isn't transformed into one to fputc when
; the latter is declared with an incompatible signature (which might
; trigger an abort).
define void @call_fwrite(ptr %fp) {
%p = getelementptr [1 x i8], ptr @ca1, i32 0, i32 0
call i32 @fwrite(ptr %p, i64 1, i64 1, ptr %fp)
ret void
}
; Verify that a call to an incompatible void printf(char*) with just "%s"
; isn't transformed.
define void @call_printf(ptr %s) {
; CHECK-LABEL: @call_printf(
;
%fmt = getelementptr [3 x i8], ptr @pcnt_s, i32 0, i32 0
call i32 @printf(ptr %fmt)
ret void
}
; Verify that a call to an incompatible int fprintf(FILE*, char*) isn't
; transformed.
define i8 @call_fprintf(ptr %fp, ptr %p) {
; CHECK-LABEL: @call_fprintf(
;
%fmt = getelementptr [3 x i8], ptr @pcnt_s, i32 0, i32 0
%call = call i8 (ptr, ptr, ...) @fprintf(ptr %fp, ptr %fmt, ptr %p)
ret i8 %call
}
; Verify that a call to an incompatible int sprintf(FILE*, char*) isn't
; transformed.
define i8 @call_sprintf(ptr %p, ptr %q) {
; CHECK-LABEL: @call_sprintf(
;
%fmt = getelementptr [3 x i8], ptr @pcnt_s, i32 0, i32 0
%call = call i8 (ptr, ptr, ...) @sprintf(ptr %p, ptr %fmt, ptr %q)
ret i8 %call
}