mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
85f56baca8
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212019 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
815 B
LLVM
32 lines
815 B
LLVM
; Test if the !invariant.load metadata is maintained by GVN.
|
|
; RUN: opt -basicaa -gvn -S < %s | FileCheck %s
|
|
|
|
define i32 @test1(i32* nocapture %p, i8* nocapture %q) {
|
|
; CHECK-LABEL: test1
|
|
; CHECK: %x = load i32* %p, align 4, !invariant.load !0
|
|
; CHECK-NOT: %y = load
|
|
entry:
|
|
%x = load i32* %p, align 4, !invariant.load !0
|
|
%conv = trunc i32 %x to i8
|
|
store i8 %conv, i8* %q, align 1
|
|
%y = load i32* %p, align 4, !invariant.load !0
|
|
%add = add i32 %y, 1
|
|
ret i32 %add
|
|
}
|
|
|
|
define i32 @test2(i32* nocapture %p, i8* nocapture %q) {
|
|
; CHECK-LABEL: test2
|
|
; CHECK-NOT: !invariant.load
|
|
; CHECK-NOT: %y = load
|
|
entry:
|
|
%x = load i32* %p, align 4
|
|
%conv = trunc i32 %x to i8
|
|
store i8 %conv, i8* %q, align 1
|
|
%y = load i32* %p, align 4, !invariant.load !0
|
|
%add = add i32 %y, 1
|
|
ret i32 %add
|
|
}
|
|
|
|
!0 = metadata !{ }
|
|
|