projects
/
model-checker.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c085ae
)
action: don't merge twice in read_from()
author
Brian Norris
<banorris@uci.edu>
Fri, 10 Aug 2012 21:59:20 +0000
(14:59 -0700)
committer
Brian Norris
<banorris@uci.edu>
Thu, 16 Aug 2012 17:30:26 +0000
(10:30 -0700)
synchronize_with() already takes care of the clock vector merging, so don't
merge a second time.
action.cc
patch
|
blob
|
history
diff --git
a/action.cc
b/action.cc
index 131cb74d7e821ba8c473499f0eed3e7eaf504191..5c036ef1cf92e8376ffa7958b0c2b3660f3f3d27 100644
(file)
--- a/
action.cc
+++ b/
action.cc
@@
-167,7
+167,6
@@
void ModelAction::read_from(const ModelAction *act)
ASSERT(cv);
if (act!=NULL && act->is_release() && this->is_acquire()) {
synchronize_with(act);
- cv->merge(act->cv);
}
reads_from = act;
}