diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-09-29 18:20:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-09-29 18:20:25 +0000 |
commit | dd0cb22bd62e1e835327f478a2dbf0b8fa439713 (patch) | |
tree | 805eb968edf6bf2d50915296c171dc81cbd0ff98 /lib/CodeGen/CodeGenModule.cpp | |
parent | 1b398205267ea69f35230eea50e0225db22ebb7e (diff) |
Add support for attribute((naked)), patch by Zoxc on cfe-commits!
- Minor style tweaks by me.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115056 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index 805b33e324..12c8f7919f 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -457,6 +457,9 @@ void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D, if (D->hasAttr<AlwaysInlineAttr>()) F->addFnAttr(llvm::Attribute::AlwaysInline); + if (D->hasAttr<NakedAttr>()) + F->addFnAttr(llvm::Attribute::Naked); + if (D->hasAttr<NoInlineAttr>()) F->addFnAttr(llvm::Attribute::NoInline); |