projects
/
IRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fd3bc9
)
Fix minor bug
author
adash
<adash>
Fri, 16 Nov 2007 03:56:33 +0000
(
03:56
+0000)
committer
adash
<adash>
Fri, 16 Nov 2007 03:56:33 +0000
(
03:56
+0000)
Robust/src/Analysis/Prefetch/PrefetchAnalysis.java
patch
|
blob
|
history
diff --git
a/Robust/src/Analysis/Prefetch/PrefetchAnalysis.java
b/Robust/src/Analysis/Prefetch/PrefetchAnalysis.java
index 29a85210297a0831f7ee51ead3dcd72d0ac26d2c..5ec0fc6d5e33fd56634f356e1fd45e0e08f4ee5e 100644
(file)
--- a/
Robust/src/Analysis/Prefetch/PrefetchAnalysis.java
+++ b/
Robust/src/Analysis/Prefetch/PrefetchAnalysis.java
@@
-738,9
+738,7
@@
private void processFlatFieldNode(FlatNode curr, Hashtable<PrefetchPair, Float>
if(td.contains(currfln.getDst())) {
int index = td.indexOf(currfln.getDst());
td.remove(index);
- if((Integer)(currfln.getValue()) != 0) {
- ((IndexDescriptor)o).offset = (Integer)currfln.getValue();
- }
+ ((IndexDescriptor)o).offset += (Integer)currfln.getValue();
}
}
}