Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
0caa2d47b84337e942b3f6652adfafe4ae506cfe
/
.
/
test
/
CodeGen
/
debug-info-enum.c
blob: b4a1ce0d3a221ed6f71838619ef1834209513bf7 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -g %s -o %t
// RUN: grep DW_TAG_enumeration_type %t
// Radar 8195980
enum
vtag
{
VT_ONE
};
int
foo
(
int
i
)
{
return
i
==
VT_ONE
;
}