brintos

brintos / llvm-project-archived public Read only

0
0
Text · 355 B · 9cedbbd Raw
14 lines · plain
1; RUN: llc < %s -mcpu=generic -x86-asm-syntax=intel | FileCheck %s2; CHECK: add esp, 83 4target triple = "i686-pc-linux-gnu"5 6declare x86_fastcallcc void @func(ptr, i64 inreg)7 8define x86_fastcallcc void @caller(i32, i64) {9        %X = alloca i32         ; <ptr> [#uses=1]10        call x86_fastcallcc void @func( ptr %X, i64 inreg 0 )11        ret void12}13 14