aboutsummaryrefslogtreecommitdiff
path: root/compiler-rt/test/profile/instrprof-hostname.c
blob: c0b3426eeaa84cdfe1c187f138d3cf2d3d1593e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_profgen -o %t -O3 %s
// RUN: env LLVM_PROFILE_FILE=%h.%t-%h.profraw_%h %run %t
// RUN: %run uname -n | tr -d '\n' > %t.n
// RUN: llvm-profdata merge -o %t.profdata %{readfile:%t.n}.%t-%{readfile:%t.n}.profraw_%{readfile:%t.n}
// 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}