commit | 15fc956ca0936fb8ac06c463093ee0ed4a2262cb | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Sat Sep 12 00:22:50 2009 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Sat Sep 12 00:22:50 2009 +0000 |
tree | 2baf055af35c5debcc5c395d9a88e2b8c5d5b678 | |
parent | 16618f2157100d72e59301892ab035911963d1ee [diff] [blame] |
Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinID llvm-svn: 81590
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index c4ca0ea..8214199 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp
@@ -1537,7 +1537,7 @@ if (!FD) return false; - unsigned id = FD->getBuiltinID(getContext()); + unsigned id = FD->getBuiltinID(); if (!id) return false;