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, ...)
13 ; CHECK-LABEL: define ptr @f_thunk(ptr %this, ...)
14 ; CHECK: %rv = musttail call ptr (ptr, ...) @f(ptr %this, ...)