summaryrefslogtreecommitdiffstats
path: root/tools/ppetracepp/ppetracepp.C
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ppetracepp/ppetracepp.C')
-rwxr-xr-xtools/ppetracepp/ppetracepp.C6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/ppetracepp/ppetracepp.C b/tools/ppetracepp/ppetracepp.C
index 5cd7a2ff..5f86a60b 100755
--- a/tools/ppetracepp/ppetracepp.C
+++ b/tools/ppetracepp/ppetracepp.C
@@ -431,7 +431,11 @@ void parse_line(map<string,string>& rhash, string& line, string& out_line)
{
fprintf(stderr, "hash collision: two different strings give the same hash value '%s'\n", hash32.c_str());
fprintf(stderr, "%s\n%s\n", strings.c_str(), rhash[hash32].c_str());
- return;
+ // Not breaking the compilation here. This is same as if we get hash
+ // collision across files. As in SBE we are using mirroring, these
+ // hash collisions will take some time to resolve. Till that time,
+ // let us allow compilation of procedures.
+ //return;
}
rhash[hash32] = strings;
OpenPOWER on IntegriCloud