Test case for llvm r110712.

llvm-svn: 110713
This commit is contained in:
Devang Patel 2010-08-10 20:01:51 +00:00
parent 8e06a5eb47
commit bb9106b395
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// RUN: %clang -fverbose-asm -S -g %s -o - | grep DW_TAG_enumeration_type
int v;
enum index { MAX };
void foo(void)
{
v = MAX;
}