Easwaran Raman | 8160812 | 2016-03-24 21:32:25 +0000 | [diff] [blame] | 1 | // Test that profile summary is set correctly. |
| 2 | |
| 3 | // RUN: llvm-profdata merge %S/Inputs/max-function-count.proftext -o %t.profdata |
Chandler Carruth | 93786da | 2016-12-23 00:23:01 +0000 | [diff] [blame] | 4 | // RUN: %clang_cc1 %s -o - -disable-llvm-passes -emit-llvm -fprofile-instrument-use-path=%t.profdata | FileCheck %s |
Easwaran Raman | 8160812 | 2016-03-24 21:32:25 +0000 | [diff] [blame] | 5 | // |
| 6 | int begin(int i) { |
| 7 | if (i) |
| 8 | return 0; |
| 9 | return 1; |
| 10 | } |
| 11 | |
| 12 | int end(int i) { |
| 13 | if (i) |
| 14 | return 0; |
| 15 | return 1; |
| 16 | } |
| 17 | |
| 18 | int main(int argc, const char *argv[]) { |
| 19 | begin(0); |
| 20 | end(1); |
| 21 | end(1); |
| 22 | return 0; |
| 23 | } |
| 24 | // CHECK: {{![0-9]+}} = !{i32 1, !"ProfileSummary", {{![0-9]+}}} |
| 25 | // CHECK: {{![0-9]+}} = !{!"DetailedSummary", {{![0-9]+}}} |