[PATCH] D67231: [Attributor][Fix] Use right type to replace expressions
Johannes Doerfert via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 13 19:56:41 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL371915: [Attributor][Fix] Use right type to replace expressions (authored by jdoerfert, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D67231?vs=218943&id=220201#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67231/new/
https://reviews.llvm.org/D67231
Files:
llvm/trunk/lib/Transforms/IPO/Attributor.cpp
llvm/trunk/test/Transforms/FunctionAttrs/arg_returned.ll
Index: llvm/trunk/test/Transforms/FunctionAttrs/arg_returned.ll
===================================================================
--- llvm/trunk/test/Transforms/FunctionAttrs/arg_returned.ll
+++ llvm/trunk/test/Transforms/FunctionAttrs/arg_returned.ll
@@ -827,6 +827,17 @@
ret i32 %add3
}
+ at G = external global i8
+define i32* @ret_const() #0 {
+ %bc = bitcast i8* @G to i32*
+ ret i32* %bc
+}
+define i32* @use_const() #0 {
+ %c = call i32* @ret_const()
+ ; CHECK: ret i32* bitcast (i8* @G to i32*)
+ ret i32* %c
+}
+
attributes #0 = { noinline nounwind uwtable }
; BOTH-NOT: attributes #
Index: llvm/trunk/lib/Transforms/IPO/Attributor.cpp
===================================================================
--- llvm/trunk/lib/Transforms/IPO/Attributor.cpp
+++ llvm/trunk/lib/Transforms/IPO/Attributor.cpp
@@ -874,12 +874,17 @@
if (Function *F = dyn_cast<Function>(&AnchorValue)) {
for (const Use &U : F->uses())
if (CallBase *CB = dyn_cast<CallBase>(U.getUser()))
- if (CB->isCallee(&U))
- Changed = ReplaceCallSiteUsersWith(*CB, *RVC) | Changed;
+ if (CB->isCallee(&U)) {
+ Constant *RVCCast =
+ ConstantExpr::getTruncOrBitCast(RVC, CB->getType());
+ Changed = ReplaceCallSiteUsersWith(*CB, *RVCCast) | Changed;
+ }
} else {
assert(isa<CallBase>(AnchorValue) &&
"Expcected a function or call base anchor!");
- Changed = ReplaceCallSiteUsersWith(cast<CallBase>(AnchorValue), *RVC);
+ Constant *RVCCast =
+ ConstantExpr::getTruncOrBitCast(RVC, AnchorValue.getType());
+ Changed = ReplaceCallSiteUsersWith(cast<CallBase>(AnchorValue), *RVCCast);
}
if (Changed == ChangeStatus::CHANGED)
STATS_DECLTRACK(UniqueConstantReturnValue, FunctionReturn,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D67231.220201.patch
Type: text/x-patch
Size: 1826 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190914/464a6b5a/attachment.bin>
More information about the llvm-commits
mailing list