2016-01-30 07:52:11 +08:00
|
|
|
// RUN: %clang_profgen -o %t -O3 %s
|
|
|
|
// RUN: env LLVM_PROFILE_FILE=%h.%t-%h.profraw_%h %run %t
|
2016-06-25 01:42:51 +08:00
|
|
|
// RUN: %run uname -n > %t.n
|
|
|
|
// RUN: llvm-profdata merge -o %t.profdata `cat %t.n`.%t-`cat %t.n`.profraw_`cat %t.n`
|
2016-01-30 07:52:11 +08:00
|
|
|
// RUN: %clang_profuse=%t.profdata -o - -S -emit-llvm %s | FileCheck %s
|
|
|
|
// REQUIRES: shell
|
|
|
|
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
|
|
// CHECK: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD1:[0-9]+]]
|
|
|
|
if (argc > 2)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// CHECK: ![[PD1]] = !{!"branch_weights", i32 1, i32 2}
|