Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / debug-info-variadic-method.m
blobd57019810839e5ce013aeafde9876c6ae8ff9ce7
1 // RUN: %clang_cc1 -o - -emit-llvm -debug-info-kind=limited %s | FileCheck %s
3 // This test verifies that variadic ObjC methods get the
4 // DW_TAG_unspecified_parameter marker.
6 @interface Foo
7 - (void) Bar: (int) n, ...;
8 @end
10 @implementation Foo
11 - (void) Bar: (int) n, ...
13   // CHECK: !DISubroutineType(types: ![[NUM:[0-9]+]])
14   // CHECK: ![[NUM]] = {{!{null, ![^,]*, ![^,]*, ![^,]*, null}}}
16 @end