26 lines · plain
1; RUN: opt -S -passes=mergefunc < %s | FileCheck %s2target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"3 4declare void @stuff()5 6define void @f0(i64 %p0) {7entry:8 call void @stuff()9 call void @stuff()10 call void @stuff()11 ret void12}13 14; CHECK-LABEL: @f015; CHECK: %2 = ptrtoint ptr %0 to i6416; CHECK: tail call void @f0(i64 %2)17; CHECK: ret void18define void @f1(ptr addrspace(0) %p0) {19entry:20 call void @stuff()21 call void @stuff()22 call void @stuff()23 ret void24}25 26