brintos

brintos / llvm-project-archived public Read only

0
0
Text · 296 B · 83f4239 Raw
14 lines · plain
1; RUN: llc -mtriple=mips64el -mcpu=mips4 < %s | FileCheck %s2; RUN: llc -mtriple=mips64el -mcpu=mips64 < %s | FileCheck %s3 4define void @foo3() nounwind {5entry:6; CHECK: daddiu ${{[0-9]+}}, $sp7  %a = alloca i32, align 48  call void @foo1(ptr %a) nounwind9  ret void10}11 12declare void @foo1(ptr)13 14