[InstCombine] Signed saturation patterns
[llvm-core.git] / test / LTO / X86 / llvm-lto-output.ll
blob56a9a5284b1eae88c15a2d81d70af4d53b3e2af7
1 ; Test the various output formats of the llvm-lto utility
3 ; RUN: llvm-as < %s > %t1
5 ; RUN: llvm-lto -exported-symbol=main -save-merged-module -filetype=asm -o %t2 %t1
6 ; RUN: llvm-dis -o - %t2.merged.bc | FileCheck %s
7 ; CHECK: @main()
9 ; RUN: FileCheck --check-prefix=ASM %s < %t2
10 ; RUN: llvm-lto -exported-symbol=main -filetype=obj -o %t2 %t1
11 ; RUN: llvm-objdump -d %t2 | FileCheck --check-prefix=ASM %s
12 ; ASM: main:
15 target triple = "x86_64-unknown-linux-gnu"
17 define i32 @main() {
18 entry:
19   ret i32 23