summaryrefslogtreecommitdiffstats
path: root/src/build/trace
diff options
context:
space:
mode:
authorMatt Derksen <mderkse1@us.ibm.com>2017-07-05 16:26:58 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-07-11 15:55:22 -0400
commita8fbb7dfd6c089c9fa94975405ac64e2aa48b5c1 (patch)
tree80f6dd98e8d1a7327b2202d5cc1741805754fcd6 /src/build/trace
parent61f38bd338cfc056cb9e6d4f407b9279c437c4ab (diff)
downloadblackbird-hostboot-a8fbb7dfd6c089c9fa94975405ac64e2aa48b5c1.tar.gz
blackbird-hostboot-a8fbb7dfd6c089c9fa94975405ac64e2aa48b5c1.zip
Fix decimal modifiers in Hostboot trace
Change-Id: Ia958d821ff833abc7e8be0713beefbff25249aee RTC: 165956 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/42784 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Martin Gloff <mgloff@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/build/trace')
-rwxr-xr-xsrc/build/trace/tracehash_hb.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/build/trace/tracehash_hb.pl b/src/build/trace/tracehash_hb.pl
index e4cdb63bc..4ae10c89f 100755
--- a/src/build/trace/tracehash_hb.pl
+++ b/src/build/trace/tracehash_hb.pl
@@ -6,7 +6,7 @@
#
# OpenPOWER HostBoot Project
#
-# Contributors Listed Below - COPYRIGHT 2011,2015
+# Contributors Listed Below - COPYRIGHT 2011,2017
# [+] International Business Machines Corp.
#
#
@@ -651,11 +651,11 @@ sub assimilate_file($) {
chop $line; # remove EOL
# 64 bit support
- $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)d\b/\%$1$2$3lld/g;
- $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)i\b/\%$1$2$3lld/g;
- $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)u\b/\%$1$2$3llu/g;
- $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)x\b/\%$1$2$3llx/g;
- $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)X\b/\%$1$2$3llX/g;
+ $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)d/\%$1$2$3lld/g;
+ $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)i/\%$1$2$3lld/g;
+ $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)u/\%$1$2$3llu/g;
+ $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)x/\%$1$2$3llx/g;
+ $line =~ s/\%(\d*)(\.?)(\d*)(?:h?|l{0,2}|L?)X/\%$1$2$3llX/g;
$line =~ s/\%p/0x\%llX/g; # Replace pointer format with hex value
#print "line: $line\n";
OpenPOWER on IntegriCloud