[PATCH] D52933: Fix incorrect Twine usage in CFGPrinter
Marcin Copik via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 8 03:21:44 PDT 2018
mcopik updated this revision to Diff 168630.
https://reviews.llvm.org/D52933
Files:
include/llvm/Analysis/CFGPrinter.h
test/Other/cfg-printer-branch-weights.ll
Index: test/Other/cfg-printer-branch-weights.ll
===================================================================
--- /dev/null
+++ test/Other/cfg-printer-branch-weights.ll
@@ -0,0 +1,19 @@
+;RUN: opt < %s -analyze -dot-cfg 2>/dev/null
+;RUN: FileCheck %s -input-file=cfg.f.dot
+
+define void @f(i32) {
+entry:
+ %check = icmp sgt i32 %0, 0
+ br i1 %check, label %if, label %exit, !prof !0
+
+; CHECK: label="W:1"
+; CHECK-NOT: ["];
+if: ; preds = %entry
+ br label %exit
+; CHECK: label="W:200"
+; CHECK-NOT: ["];
+exit: ; preds = %entry, %if
+ ret void
+}
+
+!0 = !{!"branch_weights", i32 1, i32 200}
Index: include/llvm/Analysis/CFGPrinter.h
===================================================================
--- include/llvm/Analysis/CFGPrinter.h
+++ include/llvm/Analysis/CFGPrinter.h
@@ -172,8 +172,7 @@
// Prepend a 'W' to indicate that this is a weight rather than the actual
// profile count (due to scaling).
- Twine Attrs = "label=\"W:" + Twine(Weight->getZExtValue()) + "\"";
- return Attrs.str();
+ return ("label=\"W:" + Twine(Weight->getZExtValue()) + "\"").str();
}
};
} // End llvm namespace
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52933.168630.patch
Type: text/x-patch
Size: 1180 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181008/fe54128d/attachment.bin>
More information about the llvm-commits
mailing list