brintos

brintos / llvm-project-archived public Read only

0
0
Text · 245 B · 9470708 Raw
12 lines · plain
1; RUN: llc < %s -mtriple=arm64-eabi | FileCheck %s2 3define i64 @foo(i32 %a, i32 %b) nounwind readnone ssp {4entry:5; CHECK-LABEL: foo:6; CHECK: add w0, w1, w07; CHECK: ret8  %add = add i32 %b, %a9  %conv = zext i32 %add to i6410  ret i64 %conv11}12