8d976318ad6d6586a83bbd48daaddbab93bf6f82
[oota-llvm.git] / test / Transforms / PGOProfile / single_bb.ll
1 ; RUN: opt < %s -pgo-instr-gen -S | FileCheck %s --check-prefix=GEN
2 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
3 target triple = "x86_64-unknown-linux-gnu"
4
5 ; GEN: @__llvm_profile_name_single_bb = private constant [9 x i8] c"single_bb"
6
7 define i32 @single_bb() {
8 entry:
9 ; GEN: entry:
10 ; GEN: call void @llvm.instrprof.increment(i8* getelementptr inbounds ([9 x i8], [9 x i8]* @__llvm_profile_name_single_bb, i32 0, i32 0), i64 12884901887, i32 1, i32 0)
11   ret i32 0
12 }