diff options
author | Eric Christopher <echristo@gmail.com> | 2015-08-06 01:01:12 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2015-08-06 01:01:12 +0000 |
commit | 02d5d86b4e76041ddb90fe4b1625d8b244836c08 (patch) | |
tree | d83f40f116b7683081811273c3d77ad83ce82679 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 49873a838208f0ac0fe454444e6d603d9cc2877b (diff) | |
download | bcm5719-llvm-02d5d86b4e76041ddb90fe4b1625d8b244836c08.tar.gz bcm5719-llvm-02d5d86b4e76041ddb90fe4b1625d8b244836c08.zip |
Rename the non-coding style conformant functions in namespace Builtins
to match the rest of their brethren and reformat the bits that need it.
llvm-svn: 244186
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 8e5bc5d327f..fe1f9bae784 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -1439,7 +1439,7 @@ namespace { unsigned BuiltinID = FD->getBuiltinID(); if (!BuiltinID || !BI.isLibFunction(BuiltinID)) return true; - StringRef BuiltinName = BI.GetName(BuiltinID); + StringRef BuiltinName = BI.getName(BuiltinID); if (BuiltinName.startswith("__builtin_") && Name == BuiltinName.slice(strlen("__builtin_"), StringRef::npos)) { Result = true; |