mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-02 10:33:53 +00:00
[SCCP] Turn loads of null into undef instead of zero initialized values
Surprisingly, this is a correctness issue: the mmx type exists for calling convention purposes, LLVM doesn't have a zero representation for them. This partially fixes PR23999. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241142 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4015c5e2e4
commit
284c49c36f
@ -1055,7 +1055,7 @@ void SCCPSolver::visitLoadInst(LoadInst &I) {
|
||||
|
||||
// load null -> null
|
||||
if (isa<ConstantPointerNull>(Ptr) && I.getPointerAddressSpace() == 0)
|
||||
return markConstant(IV, &I, Constant::getNullValue(I.getType()));
|
||||
return markConstant(IV, &I, UndefValue::get(I.getType()));
|
||||
|
||||
// Transform load (constant global) into the value loaded.
|
||||
if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr)) {
|
||||
|
@ -27,3 +27,8 @@ define i32 @test2([4 x i32] %A) {
|
||||
%B = extractvalue [4 x i32] %A, 1
|
||||
ret i32 %B
|
||||
}
|
||||
|
||||
define x86_mmx @test3() {
|
||||
%load = load x86_mmx, x86_mmx* null
|
||||
ret x86_mmx %load
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user