1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00
Eric Christopher a62270de2c Revert "Temporarily Revert "Add basic loop fusion pass.""
The reversion apparently deleted the test/Transforms directory.

Will be re-reverting again.

llvm-svn: 358552
2019-04-17 04:52:47 +00:00

28 lines
930 B
LLVM

; Verify that section assignment is copied during SROA
; RUN: opt < %s -globalopt -S | FileCheck %s
; CHECK: @G.0
; CHECK: section ".foo"
; CHECK: @G.1
; CHECK: section ".foo"
; CHECK: @G.2
; CHECK: section ".foo"
%T = type { double, double, double }
@G = internal global %T zeroinitializer, align 16, section ".foo"
define void @test() {
store double 1.0, double* getelementptr (%T, %T* @G, i32 0, i32 0), align 16
store double 2.0, double* getelementptr (%T, %T* @G, i32 0, i32 1), align 8
store double 3.0, double* getelementptr (%T, %T* @G, i32 0, i32 2), align 16
ret void
}
define double @test2() {
%V1 = load double, double* getelementptr (%T, %T* @G, i32 0, i32 0), align 16
%V2 = load double, double* getelementptr (%T, %T* @G, i32 0, i32 1), align 8
%V3 = load double, double* getelementptr (%T, %T* @G, i32 0, i32 2), align 16
%R = fadd double %V1, %V2
%R2 = fadd double %R, %V3
ret double %R2
}