diff options
author | Alp Toker <alp@nuanti.com> | 2013-12-28 21:59:02 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-12-28 21:59:02 +0000 |
commit | a724cff01b7c2dab536afe1ddf73740bf05ab841 (patch) | |
tree | 076ab855e4cce2933548196b88f7d2cb8418152b /clang/lib/CodeGen/CGExprConstant.cpp | |
parent | 82862258e3208c5771f64b6a823d10400342ae68 (diff) | |
download | bcm5719-llvm-a724cff01b7c2dab536afe1ddf73740bf05ab841.tar.gz bcm5719-llvm-a724cff01b7c2dab536afe1ddf73740bf05ab841.zip |
Rename isBuiltinCall() to getBuiltinCallee()
This better describes what the function does.
Cleanup only.
llvm-svn: 198127
Diffstat (limited to 'clang/lib/CodeGen/CGExprConstant.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExprConstant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExprConstant.cpp b/clang/lib/CodeGen/CGExprConstant.cpp index ad3e1fcbef0..4fff49cb030 100644 --- a/clang/lib/CodeGen/CGExprConstant.cpp +++ b/clang/lib/CodeGen/CGExprConstant.cpp @@ -920,7 +920,7 @@ public: } case Expr::CallExprClass: { CallExpr* CE = cast<CallExpr>(E); - unsigned builtin = CE->isBuiltinCall(); + unsigned builtin = CE->getBuiltinCallee(); if (builtin != Builtin::BI__builtin___CFStringMakeConstantString && builtin != |