diff options
author | Chris Lattner <sabre@nondot.org> | 2010-12-22 08:02:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-12-22 08:02:57 +0000 |
commit | cafc1e60bb25db63a8d4dacf1cd026937aab217a (patch) | |
tree | 6c78506d1543e442f8e07f52b1726b11474f910e /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 9a499e96eb394aa84bdb06b7d42b7d29ce9020d6 (diff) | |
download | bcm5719-llvm-cafc1e60bb25db63a8d4dacf1cd026937aab217a.tar.gz bcm5719-llvm-cafc1e60bb25db63a8d4dacf1cd026937aab217a.zip |
Fix a bug in ReduceLoadWidth that wasn't handling extending
loads properly. We miscompiled the testcase into:
_test: ## @test
movl $128, (%rdi)
movzbl 1(%rdi), %eax
ret
Now we get a proper:
_test: ## @test
movl $128, (%rdi)
movsbl (%rdi), %eax
movzbl %ah, %eax
ret
This fixes PR8757.
llvm-svn: 122392
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 2523bb2451b..e4f30270538 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -4241,12 +4241,15 @@ SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) { return SDValue(); } + // At this point, we must have a load or else we can't do the transform. + if (!isa<LoadSDNode>(N0)) return SDValue(); + // If the shift amount is larger than the input type then we're not // accessing any of the loaded bytes. If the load was a zextload/extload // then the result of the shift+trunc is zero/undef (handled elsewhere). // If the load was a sextload then the result is a splat of the sign bit // of the extended byte. This is not worth optimizing for. - if (ShAmt >= VT.getSizeInBits()) + if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits()) return SDValue(); } } |