Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Assembler / musttail.ll
blob625adf2cb21ffc1e45e5dc8360d00168804736af
1 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
3 ; Check that the ellipsis round trips.
5 %struct.A = type { i32 }
7 declare ptr @f(ptr, ...)
9 define ptr @f_thunk(ptr %this, ...) {
10   %rv = musttail call ptr (ptr, ...) @f(ptr %this, ...)
11   ret ptr %rv
13 ; CHECK-LABEL: define ptr @f_thunk(ptr %this, ...)
14 ; CHECK: %rv = musttail call ptr (ptr, ...) @f(ptr %this, ...)