summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaDeclAttr.cpp
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-02-22 16:59:24 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-02-22 16:59:24 +0000
commit7c19ab17c722288f47dfc887dec0405814bf304d (patch)
treea90abcc93e28e1d24c4025be0d2ba931b264d6c5 /clang/lib/Sema/SemaDeclAttr.cpp
parent9d2c15eff7edd220a3246ebedd2e502051e49844 (diff)
downloadbcm5719-llvm-7c19ab17c722288f47dfc887dec0405814bf304d.tar.gz
bcm5719-llvm-7c19ab17c722288f47dfc887dec0405814bf304d.zip
Exposing the noduplicate attribute within Clang, which marks functions so that the optimizer does not duplicate code.
Patch thanks to Marcello Maggioni! llvm-svn: 201941
Diffstat (limited to 'clang/lib/Sema/SemaDeclAttr.cpp')
-rw-r--r--clang/lib/Sema/SemaDeclAttr.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaDeclAttr.cpp b/clang/lib/Sema/SemaDeclAttr.cpp
index 29e4bb7b3e2..1de06af775d 100644
--- a/clang/lib/Sema/SemaDeclAttr.cpp
+++ b/clang/lib/Sema/SemaDeclAttr.cpp
@@ -4237,6 +4237,8 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
handleSimpleAttribute<PureAttr>(S, D, Attr); break;
case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
+ case AttributeList::AT_NoDuplicate:
+ handleSimpleAttribute<NoDuplicateAttr>(S, D, Attr); break;
case AttributeList::AT_NoInline:
handleSimpleAttribute<NoInlineAttr>(S, D, Attr); break;
case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
OpenPOWER on IntegriCloud