reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Tests for merge of empty profile files. RUN: touch %t_empty.proftext RUN: llvm-profdata merge -text -o %t_clang.proftext %t_empty.proftext %p/Inputs/clang_profile.proftext RUN: FileCheck --input-file=%t_clang.proftext %s -check-prefix=CLANG_PROF_TEXT CLANG_PROF_TEXT: main CLANG_PROF_TEXT: 0 CLANG_PROF_TEXT: 1 CLANG_PROF_TEXT: 1 RUN: llvm-profdata merge -text -o %t_ir.proftext %t_empty.proftext %p/Inputs/IR_profile.proftext RUN: FileCheck --input-file=%t_ir.proftext %s -check-prefix=IR_PROF_TEXT IR_PROF_TEXT: :ir IR_PROF_TEXT: main IR_PROF_TEXT: 0 IR_PROF_TEXT: 1 IR_PROF_TEXT: 1 |