diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-08-26 22:34:23 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-08-26 22:34:23 +0000 |
commit | af665820e48c84128621c08585938a64c20e5dbe (patch) | |
tree | 34323f335cb662ea24a587126b51bda6b8bbda95 /clang/lib | |
parent | b39e0decf88a0de82e836de3ca7e9c9a60e65f58 (diff) | |
download | bcm5719-llvm-af665820e48c84128621c08585938a64c20e5dbe.tar.gz bcm5719-llvm-af665820e48c84128621c08585938a64c20e5dbe.zip |
Remove default value for 'Pred' argument to GRCoreEngineImpl::GenerateNode().
llvm-svn: 55392
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Analysis/GRCoreEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/GRCoreEngine.cpp b/clang/lib/Analysis/GRCoreEngine.cpp index 1c64c28c37d..a7e1458e7a1 100644 --- a/clang/lib/Analysis/GRCoreEngine.cpp +++ b/clang/lib/Analysis/GRCoreEngine.cpp @@ -75,7 +75,7 @@ bool GRCoreEngineImpl::ExecuteWorkList(unsigned Steps) { WList->setBlockCounter(BCounterFactory.GetEmptyCounter()); // Generate the root. - GenerateNode(StartLoc, getInitialState()); + GenerateNode(StartLoc, getInitialState(), 0); } while (Steps && WList->hasWork()) { |