summaryrefslogtreecommitdiff
path: root/test/CodeGenObjC
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2013-04-19 21:48:07 +0000
committerAdrian Prantl <aprantl@apple.com>2013-04-19 21:48:07 +0000
commit7018070d16986d853f1e3be36a65d9f68e0fdff5 (patch)
treeefaed92734514b71584e1f91ca260028c51c6c63 /test/CodeGenObjC
parent2fcf0de8a122ddb265d8c32d6ac1012c070e4f24 (diff)
downloadclang-7018070d16986d853f1e3be36a65d9f68e0fdff5.tar.gz
cleanup and relax test cases
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179896 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjC')
-rw-r--r--test/CodeGenObjC/objc-fixed-enum.m5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/CodeGenObjC/objc-fixed-enum.m b/test/CodeGenObjC/objc-fixed-enum.m
index 471068bca1..3f005c9a6d 100644
--- a/test/CodeGenObjC/objc-fixed-enum.m
+++ b/test/CodeGenObjC/objc-fixed-enum.m
@@ -1,7 +1,8 @@
-// RUN: %clang_cc1 -triple armv7-apple-darwin10 -g -emit-llvm -Werror -o - %s | FileCheck %s
+// RUN: %clang_cc1 -triple armv7-apple-darwin10 -g -emit-llvm -o - %s | FileCheck %s
// The DWARF standard says the underlying data type of an enum may be
-// stored in an DW_AT_type() entry in the enum DIE.
+// stored in an DW_AT_type entry in the enum DIE. This is useful to have
+// so the debugger knows about the signedness of the underlying type.
typedef long NSInteger;
#define NS_ENUM(_type, _name) enum _name : _type _name; enum _name : _type