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 | 38a23ba1938b3996718d028f3505bc5ef8c07abd (patch) | |
tree | f516c9f2652c5d3dfc80280557ba45c4b88d2bd5 /lib/Analysis/GRCoreEngine.cpp | |
parent | c45ef600ed6f1544e8dfca2a3fa554eb7d6a9908 (diff) |
Remove default value for 'Pred' argument to GRCoreEngineImpl::GenerateNode().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55392 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRCoreEngine.cpp')
-rw-r--r-- | lib/Analysis/GRCoreEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRCoreEngine.cpp b/lib/Analysis/GRCoreEngine.cpp index 1c64c28c37..a7e1458e7a 100644 --- a/lib/Analysis/GRCoreEngine.cpp +++ b/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()) { |