[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / PGOProfile / do-not-instrument.ll
blobca950a621e8e44876623268f32651cfc3db1c062
1 ; RUN: opt < %s -pgo-instr-gen -S | FileCheck %s
2 ; RUN: opt < %s -passes=pgo-instr-gen -S | FileCheck %s
4 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-apple-macosx10.12.0"
7 define i32 @f1() {
8 ; CHECK-LABEL: @f1
9 entry:
10 ; CHECK: call void @llvm.instrprof.increment
11 ; CHECK-NOT: ptrtoint void (i8*)* asm sideeffect
12 ; CHECK-NOT: call void @llvm.instrprof.value.profile
13 ; CHECK: tail call void asm sideeffect 
14   tail call void asm sideeffect "", "imr,~{memory},~{dirflag},~{fpsr},~{flags}"(i8* undef) #0
15   ret i32 0
18 define i32 @f2() {
19 entry:
20 ; CHECK: call void @llvm.instrprof.increment
21 ; CHECK-NOT: call void @llvm.instrprof.value.profile
22   call void (i32, ...) bitcast (void (...)* @foo to void (i32, ...)*)(i32 21)
23   ret i32 0
26 declare void @foo(...) #0
28 attributes #0 = { nounwind }