16 lines · plain
1; RUN: llc < %s -mcpu=generic -mtriple=x86_64-pc-linux -verify-machineinstrs | FileCheck %s2; RUN: llc < %s -mcpu=generic -mtriple=x86_64-pc-linux-gnux32 -verify-machineinstrs | FileCheck %s3; RUN: llc < %s -mcpu=generic -mtriple=i686-pc-linux -verify-machineinstrs | FileCheck %s -check-prefix=IA324 5; trivial test for correct call suffix6 7define i32 @far() nounwind uwtable {8entry:9; CHECK: callq foo10; IA32: calll foo11 tail call void @foo() nounwind12 ret i32 013}14 15declare void @foo()16