diff options
author | Eric Christopher <echristo@gmail.com> | 2015-06-05 22:03:00 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-06-05 22:03:00 +0000 |
commit | 162c91ccc4039746bdb89007913a701581bf3c9a (patch) | |
tree | 7df261e5a4d94ddf2e60c76ac1d0e32a6b829c27 /clang/lib/CodeGen/TargetInfo.h | |
parent | c100c56a20de2b4851f5a7192240f2917a10caad (diff) | |
download | bcm5719-llvm-162c91ccc4039746bdb89007913a701581bf3c9a.tar.gz bcm5719-llvm-162c91ccc4039746bdb89007913a701581bf3c9a.zip |
Rename the single non-style conformant function in TargetCodeGenInfo
and update all callers.
llvm-svn: 239193
Diffstat (limited to 'clang/lib/CodeGen/TargetInfo.h')
-rw-r--r-- | clang/lib/CodeGen/TargetInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.h b/clang/lib/CodeGen/TargetInfo.h index cc469d69e39..f78e54ef8d4 100644 --- a/clang/lib/CodeGen/TargetInfo.h +++ b/clang/lib/CodeGen/TargetInfo.h @@ -53,9 +53,9 @@ public: /// getABIInfo() - Returns ABI info helper for the target. const ABIInfo &getABIInfo() const { return *Info; } - /// SetTargetAttributes - Provides a convenient hook to handle extra + /// setTargetAttributes - Provides a convenient hook to handle extra /// target-specific attributes for the given global. - virtual void SetTargetAttributes(const Decl *D, llvm::GlobalValue *GV, + virtual void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV, CodeGen::CodeGenModule &M) const {} /// EmitTargetMD - Provides a convenient hook to handle extra |