mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Add a testcase from pr16244.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183433 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f1f6dcefa8
commit
ab9ba5321d
@ -988,3 +988,13 @@ define i1 @icmp_add_and_shr_ne_0(i32 %X) {
|
||||
%tobool = icmp ne i32 %add, 0
|
||||
ret i1 %tobool
|
||||
}
|
||||
|
||||
; PR16244
|
||||
; CHECK: define i1 @test71
|
||||
; CHECK-NEXT: ret i1 false
|
||||
define i1 @test71(i8* %x) {
|
||||
%a = getelementptr i8* %x, i64 8
|
||||
%b = getelementptr inbounds i8* %x, i64 8
|
||||
%c = icmp ugt i8* %a, %b
|
||||
ret i1 %c
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user