; RUN: opt -S -hotcoldsplit -hotcoldsplit-threshold=0 < %s | FileCheck %s ; Source: ; ; __attribute__((cold)) extern void sink(int); ; extern void sideeffect(int); ; void foo(int cond1, int cond2) { ; if (cond1) { ; if (cond2) { // This is the first cold region we visit. ; sideeffect(0); ; sink(0); ; } ; ; // There's a larger, overlapping cold region here. But we ignore it. ; // This could be improved. ; sideeffect(1); ; sink(1); ; } ; } target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.14.0" ; CHECK-LABEL: define {{.*}}@_Z3fooii ; CHECK: call {{.*}}@_Z3fooii.cold.1 ; CHECK-NOT: _Z3fooii.cold define void @_Z3fooii(i32, i32) { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 store i32 %1, i32* %4, align 4 %5 = load i32, i32* %3, align 4 %6 = icmp ne i32 %5, 0 br i1 %6, label %7, label %12 ;