mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-10 08:40:41 +00:00
Add a test for hoisting instructions with metadata out of then/else blocks
Test for the bug fixed in r215723. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217453 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e549e39190
commit
3503655b22
20
test/Transforms/SimplifyCFG/hoist-with-range.ll
Normal file
20
test/Transforms/SimplifyCFG/hoist-with-range.ll
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: opt < %s -simplifycfg -S | FileCheck %s
|
||||
|
||||
define void @foo(i1 %c, i8* %p) {
|
||||
; CHECK: if:
|
||||
; CHECK-NEXT: load i8* %p, !range !0
|
||||
; CHECK: !0 = metadata !{i8 0, i8 1, i8 3, i8 5}
|
||||
if:
|
||||
br i1 %c, label %then, label %else
|
||||
then:
|
||||
%t = load i8* %p, !range !0
|
||||
br label %out
|
||||
else:
|
||||
%e = load i8* %p, !range !1
|
||||
br label %out
|
||||
out:
|
||||
ret void
|
||||
}
|
||||
|
||||
!0 = metadata !{ i8 0, i8 1 }
|
||||
!1 = metadata !{ i8 3, i8 5 }
|
Loading…
x
Reference in New Issue
Block a user