mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 14:35:54 +00:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
19 lines
478 B
LLVM
19 lines
478 B
LLVM
; RUN: opt -S -instcombine < %s 2>&1 | FileCheck %s
|
|
|
|
define i64 @f(i64* %p1, i64* %p2) {
|
|
top:
|
|
; check that the tbaa is preserved
|
|
; CHECK-LABEL: @f(
|
|
; CHECK: %v1 = load i64, i64* %p1, align 8, !tbaa !0
|
|
; CHECK: store i64 %v1, i64* %p2, align 8
|
|
; CHECK: ret i64 %v1
|
|
%v1 = load i64, i64* %p1, align 8, !tbaa !0
|
|
store i64 %v1, i64* %p2, align 8
|
|
%v2 = load i64, i64* %p2, align 8
|
|
ret i64 %v2
|
|
}
|
|
|
|
!0 = !{!1, !1, i64 0}
|
|
!1 = !{!"scalar type", !2}
|
|
!2 = !{!"load_tbaa"}
|