diff options
author | Eric Christopher <echristo@apple.com> | 2010-01-15 21:36:30 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-01-15 21:36:30 +0000 |
commit | 8444d7536c9f0f1b3a513e5efbbef9529c39ce23 (patch) | |
tree | 99da6426a5da9b1f9d03fe229044bae65543768a /llvm/lib/AsmParser | |
parent | 7fe6e9c2f1d1eb41a9887adcadedc2a06d1b1fbe (diff) | |
download | bcm5719-llvm-8444d7536c9f0f1b3a513e5efbbef9529c39ce23.tar.gz bcm5719-llvm-8444d7536c9f0f1b3a513e5efbbef9529c39ce23.zip |
Remove the InlineHint attribute. There are no current or planned
users.
llvm-svn: 93558
Diffstat (limited to 'llvm/lib/AsmParser')
-rw-r--r-- | llvm/lib/AsmParser/LLLexer.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/AsmParser/LLParser.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/AsmParser/LLToken.h | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/AsmParser/LLLexer.cpp b/llvm/lib/AsmParser/LLLexer.cpp index 8ad658d858d..2a926d2e5e8 100644 --- a/llvm/lib/AsmParser/LLLexer.cpp +++ b/llvm/lib/AsmParser/LLLexer.cpp @@ -558,7 +558,6 @@ lltok::Kind LLLexer::LexIdentifier() { KEYWORD(readnone); KEYWORD(readonly); - KEYWORD(inlinehint); KEYWORD(noinline); KEYWORD(alwaysinline); KEYWORD(optsize); diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index e4039ab1680..04a5263cea0 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/lib/AsmParser/LLParser.cpp @@ -947,7 +947,6 @@ bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) { case lltok::kw_noinline: Attrs |= Attribute::NoInline; break; case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break; case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break; - case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break; case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break; case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break; case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break; diff --git a/llvm/lib/AsmParser/LLToken.h b/llvm/lib/AsmParser/LLToken.h index 7f1807c7d0d..80eb1947744 100644 --- a/llvm/lib/AsmParser/LLToken.h +++ b/llvm/lib/AsmParser/LLToken.h @@ -85,7 +85,6 @@ namespace lltok { kw_readnone, kw_readonly, - kw_inlinehint, kw_noinline, kw_alwaysinline, kw_optsize, |