1; RUN: opt -S -passes=mergefunc < %s | FileCheck %s 2 3; MergeFunctions should respect the default function address 4; space specified in the data layout. 5 6target datalayout = "e-P1-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" 7 8declare void @stuff() 9 10; CHECK-LABEL: @f0( 11define void @f0(i64 %p0) { 12entry: 13 call void @stuff() 14 call void @stuff() 15 call void @stuff() 16 ret void 17} 18 19; CHECK-LABEL: @f1( 20; CHECK: ptrtoint ptr 21; CHECK: tail call addrspace(1) void @f0(i64 22 23define void @f1(ptr %p0) { 24entry: 25 call void @stuff() 26 call void @stuff() 27 call void @stuff() 28 ret void 29} 30 31