brintos

brintos / llvm-project-archived public Read only

0
0
Text · 310 B · 4559937 Raw
16 lines · plain
1; RUN: llc -mtriple=x86_64-unknown-linux-gnu -o - %s | FileCheck %s2 3define void @f(ptr %p) unnamed_addr {4entry:5  %v = tail call ptr @g()6  store ptr %v, ptr %p, align 87  ret void8}9; CHECK-LABEL: f:10; CHECK: callq g11; CHECK: movq    %rax, (%rbx)12 13declare ptr @g() #214 15attributes #2 = { nounwind readnone }16