brintos

brintos / llvm-project-archived public Read only

0
0
Text · 407 B · 7980042 Raw
18 lines · plain
1; RUN: llc < %s -mtriple=arm-apple-darwin  | FileCheck %s -check-prefix=DARWIN2; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s -check-prefix=LINUX3; PR43444; PR44165 6define ptr @t() nounwind {7entry:8; DARWIN-LABEL: t:9; DARWIN: mov r0, r710 11; LINUX-LABEL: t:12; LINUX: mov r0, r1113	%0 = call ptr @llvm.frameaddress(i32 0)14        ret ptr %015}16 17declare ptr @llvm.frameaddress(i32) nounwind readnone18