[InstCombine] Signed saturation patterns
[llvm-core.git] / test / tools / gold / X86 / stats-file-option.ll
bloba0009a7a874d77a2c4424cfdc1fe255261a80fee
1 ; REQUIRES: asserts
3 ; RUN: llvm-as -o %t.bc %s
5 ; Try to save statistics to file.
6 ; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext -plugin-opt=stats-file=%t2.stats \
7 ; RUN:    -m elf_x86_64 -r -o %t.o %t.bc
8 ; RUN: FileCheck --input-file=%t2.stats %s
10 ; CHECK: {
11 ; CHECK: "asm-printer.EmittedInsts":
12 ; CHECK: }
15 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
16 target triple = "x86_64-unknown-linux-gnu"
18 define i32 @foo() {
19   ret i32 10
22 ; Try to save statistics to an invalid file.
23 ; RUN: not %gold -plugin %llvmshlibdir/LLVMgold%shlibext -plugin-opt=stats-file=%t2/foo.stats \
24 ; RUN:    -m elf_x86_64 -r -o %t.o %t.bc 2>&1 | FileCheck --check-prefix=ERROR %s
25 ; ERROR: LLVM gold plugin: No such file or directory