diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-01-06 14:35:46 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-01-06 14:35:46 +0000 |
commit | 7dbc9cf8760e07f28cea29e337ff3666624dc91d (patch) | |
tree | 535726e6c08e0a98ffbb3de5e2a3280cc32acaf6 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 2d0418e842e1635aaff4a642320dfa8fbf7669fd (diff) | |
download | llvm-7dbc9cf8760e07f28cea29e337ff3666624dc91d.zip llvm-7dbc9cf8760e07f28cea29e337ff3666624dc91d.tar.gz llvm-7dbc9cf8760e07f28cea29e337ff3666624dc91d.tar.bz2 |
[Driver] Add support for -fno-builtin-foo options.
Addresses PR4941 and rdar://6756912.
http://reviews.llvm.org/D15195
llvm-svn: 256937
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 3311383..fdb4d78 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -966,13 +966,14 @@ public: /// Get the LLVM attributes and calling convention to use for a particular /// function type. /// + /// \param Name - The function name. /// \param Info - The function type information. /// \param CalleeInfo - The callee information these attributes are being /// constructed for. If valid, the attributes applied to this decl may /// contribute to the function attributes and calling convention. /// \param PAL [out] - On return, the attribute list to use. /// \param CallingConv [out] - On return, the LLVM calling convention to use. - void ConstructAttributeList(const CGFunctionInfo &Info, + void ConstructAttributeList(StringRef Name, const CGFunctionInfo &Info, CGCalleeInfo CalleeInfo, AttributeListType &PAL, unsigned &CallingConv, bool AttrOnCallSite); |