X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FSupport%2FDAGDeltaAlgorithm.cpp;h=0d504ee86b4339141e05758134a5e1b026351dca;hb=487ecab8d41e70700ca27895127b99f955e31fd0;hp=34e82cf44169f27c6a39f88bd79eb0123d8c6505;hpb=a96a1824747632ce87ef065b4a13fb777d2b14d6;p=oota-llvm.git diff --git a/lib/Support/DAGDeltaAlgorithm.cpp b/lib/Support/DAGDeltaAlgorithm.cpp index 34e82cf4416..0d504ee86b4 100644 --- a/lib/Support/DAGDeltaAlgorithm.cpp +++ b/lib/Support/DAGDeltaAlgorithm.cpp @@ -42,6 +42,8 @@ #include using namespace llvm; +#define DEBUG_TYPE "dag-delta" + namespace { class DAGDeltaAlgorithmImpl { @@ -162,12 +164,12 @@ class DeltaActiveSetHelper : public DeltaAlgorithm { protected: /// UpdatedSearchState - Callback used when the search state changes. - virtual void UpdatedSearchState(const changeset_ty &Changes, - const changesetlist_ty &Sets) LLVM_OVERRIDE { + void UpdatedSearchState(const changeset_ty &Changes, + const changesetlist_ty &Sets) override { DDAI.UpdatedSearchState(Changes, Sets, Required); } - virtual bool ExecuteOneTest(const changeset_ty &S) LLVM_OVERRIDE { + bool ExecuteOneTest(const changeset_ty &S) override { return DDAI.GetTestResult(S, Required); }