[ARM] More MVE compare vector splat combines for ANDs
[llvm-complete.git] / test / ThinLTO / X86 / tli-nobuiltin.ll
blob9a480cba11568ee79b3ea8479007cdd35c1c101f
1 ; Test -lto-freestanding option for libLTO.
2 ; RUN: llvm-as < %s > %t.bc
4 ; Regular run: expects fprintf to be turned into fwrite
5 ; RUN: llvm-lto %t.bc -exported-symbol=_foo -o %t.o
6 ; RUN: llvm-nm %t.o | FileCheck %s --check-prefix=LTO
7 ; LTO: fwrite
9 ; Freestanding run: expects fprintf to NOT be turned into fwrite
10 ; RUN: llvm-lto %t.bc -lto-freestanding -exported-symbol=_foo -o %t.o
11 ; RUN: llvm-nm %t.o | FileCheck %s --check-prefix=LTO-FREESTANDING
12 ; LTO-FREESTANDING: fprintf
14 ; Same with ThinLTO now.
15 ; RUN: opt -module-hash -module-summary %s -o %t.bc
17 ; Regular run: expects fprintf to be turned into fwrite
18 ; RUN: llvm-lto -exported-symbol=_foo -thinlto-action=run %t.bc
19 ; RUN: llvm-nm %t.bc.thinlto.o | FileCheck %s --check-prefix=ThinLTO
20 ; ThinLTO: fwrite
22 ; Freestanding run: expects fprintf to NOT be turned into fwrite
23 ; RUN: llvm-lto -lto-freestanding -exported-symbol=_foo -thinlto-action=run %t.bc
24 ; RUN: llvm-nm %t.bc.thinlto.o | FileCheck %s --check-prefix=ThinLTO-FREESTANDING
25 ; ThinLTO-FREESTANDING: fprintf
28 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
29 target triple = "x86_64-apple-macosx10.11.0"
31 declare i32 @fprintf(%FILE*, i8*, ...)
33 %FILE = type { }
35 @hello_world = constant [13 x i8] c"hello world\0A\00"
36 @percent_s = constant [3 x i8] c"%s\00"
38 ; Check fprintf(fp, "%s", str) -> fwrite(str, fp) only when builtins are enabled
40 define void @foo(%FILE* %fp) {
41   %fmt = getelementptr [3 x i8], [3 x i8]* @percent_s, i32 0, i32 0
42   %str = getelementptr [13 x i8], [13 x i8]* @hello_world, i32 0, i32 0
43   call i32 (%FILE*, i8*, ...) @fprintf(%FILE* %fp, i8* %fmt, i8* %str)
44   ret void