Devang Patel | df0732d | 2010-02-23 19:37:40 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc %s -S -g -o - | grep -v DW_TAG_member |
2 | // Interface P should not be a member of interface I in debug info. | ||||
3 | @interface P | ||||
4 | @end | ||||
5 | |||||
6 | @interface I : P | ||||
7 | @end | ||||
8 | |||||
9 | void fn(I *iptr) {} |