diff options
Diffstat (limited to 'test/CodeGen/debug-info-enum.c')
-rw-r--r-- | test/CodeGen/debug-info-enum.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/debug-info-enum.c b/test/CodeGen/debug-info-enum.c deleted file mode 100644 index b4a1ce0..0000000 --- a/test/CodeGen/debug-info-enum.c +++ /dev/null @@ -1,11 +0,0 @@ -// 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; -} |