diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-17 23:20:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-17 23:20:10 +0000 |
commit | b2d2b40834817913844cdd4e778fb109a6d5f9ed (patch) | |
tree | af9c1159722e8025ef8ceb6ac597e0aedad387e2 | |
parent | cc636688c4fd10b1732ce3e33b2b106024d545ca (diff) |
gcc spells it "warn_unused_result" (already supported) not "warnunusedresult"
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64849 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Parse/AttributeList.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Parse/AttributeList.cpp b/lib/Parse/AttributeList.cpp index dcd32dcddf..3d9d2b45f7 100644 --- a/lib/Parse/AttributeList.cpp +++ b/lib/Parse/AttributeList.cpp @@ -118,9 +118,6 @@ AttributeList::Kind AttributeList::getKind(const IdentifierInfo *Name) { case 15: if (!memcmp(Str, "ext_vector_type", 15)) return AT_ext_vector_type; break; - case 16: - if (!memcmp(Str, "warnunusedresult", 16)) return AT_warn_unused_result; - break; case 17: if (!memcmp(Str, "transparent_union", 17)) return AT_transparent_union; break; |