[PATCH] D18528: Don't fold double constant to an integer if dest type not integral
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 29 09:49:38 PDT 2016
tejohnson updated this revision to Diff 51941.
tejohnson added a comment.
- Address review comments.
http://reviews.llvm.org/D18528
Files:
lib/IR/ConstantFold.cpp
test/CodeGen/X86/mmx-bitcast-fold.ll
Index: test/CodeGen/X86/mmx-bitcast-fold.ll
===================================================================
--- /dev/null
+++ test/CodeGen/X86/mmx-bitcast-fold.ll
@@ -0,0 +1,12 @@
+; RUN: opt -mtriple=x86_64-- -early-cse < %s -S | FileCheck %s
+
+; CHECK: @foo(x86_mmx bitcast (double 0.000000e+00 to x86_mmx))
+
+define void @bar() {
+entry:
+ %0 = bitcast double 0.0 to x86_mmx
+ %1 = call x86_mmx @foo(x86_mmx %0)
+ ret void
+}
+
+declare x86_mmx @foo(x86_mmx)
Index: lib/IR/ConstantFold.cpp
===================================================================
--- lib/IR/ConstantFold.cpp
+++ lib/IR/ConstantFold.cpp
@@ -191,6 +191,10 @@
if (FP->getType()->isPPC_FP128Ty())
return nullptr;
+ // Make sure dest type is compatible with the folded integer constant.
+ if (!DestTy->isIntegerTy())
+ return nullptr;
+
return ConstantInt::get(FP->getContext(),
FP->getValueAPF().bitcastToAPInt());
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D18528.51941.patch
Type: text/x-patch
Size: 965 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160329/0d443ad7/attachment.bin>
More information about the llvm-commits
mailing list