mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
29ebc2d39f
Summary: DataLayout keeps the string used for its creation. As a side effect it is no longer needed in the Module. This is "almost" NFC, the string is no longer canonicalized, you can't rely on two "equals" DataLayout having the same string returned by getStringRepresentation(). Get rid of DataLayoutPass: the DataLayout is in the Module The DataLayout is "per-module", let's enforce this by not duplicating it more than necessary. One more step toward non-optionality of the DataLayout in the module. Make DataLayout Non-Optional in the Module Module->getDataLayout() will never returns nullptr anymore. Reviewers: echristo Subscribers: resistor, llvm-commits, jholewinski Differential Revision: http://reviews.llvm.org/D7992 From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 231270
26 lines
660 B
LLVM
26 lines
660 B
LLVM
; RUN: opt < %s -loop-reduce -S \
|
|
; RUN: | grep "icmp eq i2 %lsr.iv.next, %xmp4344"
|
|
|
|
; Don't reverse the iteration if the rhs of the compare is defined
|
|
; inside the loop.
|
|
|
|
; Provide legal integer types.
|
|
; Declare i2 as legal so that IVUsers accepts to consider %indvar3451
|
|
target datalayout = "n2:8:16:32:64"
|
|
|
|
define void @Fill_Buffer(i2* %p) nounwind {
|
|
entry:
|
|
br label %bb8
|
|
|
|
bb8:
|
|
%indvar34 = phi i32 [ 0, %entry ], [ %indvar.next35, %bb8 ]
|
|
%indvar3451 = trunc i32 %indvar34 to i2
|
|
%xmp4344 = load i2, i2* %p
|
|
%xmp104 = icmp eq i2 %indvar3451, %xmp4344
|
|
%indvar.next35 = add i32 %indvar34, 1
|
|
br i1 %xmp104, label %bb10, label %bb8
|
|
|
|
bb10:
|
|
unreachable
|
|
}
|