diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | bfef399519ca9b8a4b4c6b563253bad7e0eeffe0 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/CodeGen/debug-info-enum.c | |
parent | 6a0372513edbc473b538d2f724efac50405d6fef (diff) |
Notes
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 b4a1ce0d3a221..0000000000000 --- 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; -} |