xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/vararg_no_start.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
2; RUN: llc -mtriple=x86_64-windows-msvc < %s | FileCheck %s
3
4define void @foo(i8*, ...) {
5  ret void
6}
7; CHECK-LABEL: {{^_?}}foo:
8; CHECK-NOT: movq
9; CHECK: retq
10