mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
add another testcase with simple control flow
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23438 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
79c1101947
commit
44b19f2bcb
@ -1,14 +1,16 @@
|
||||
; RUN: llvm-as < %s | opt -globalopt -disable-output &&
|
||||
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep CTOR
|
||||
|
||||
%llvm.global_ctors = appending global [4 x { int, void ()* }] [
|
||||
%llvm.global_ctors = appending global [5 x { int, void ()* }] [
|
||||
{ int, void ()* } { int 65535, void ()* %CTOR1 },
|
||||
{ int, void ()* } { int 65535, void ()* %CTOR1 },
|
||||
{ int, void ()* } { int 65535, void ()* %CTOR2 },
|
||||
{ int, void ()* } { int 65535, void ()* %CTOR3 },
|
||||
{ int, void ()* } { int 2147483647, void ()* null }
|
||||
]
|
||||
|
||||
%G = global int 0
|
||||
%G2 = global int 0
|
||||
|
||||
%CTORGV = internal global bool false ;; Should become constant after eval
|
||||
|
||||
@ -25,6 +27,18 @@ internal void %CTOR2() { ;; evaluate the store
|
||||
ret void
|
||||
}
|
||||
|
||||
internal void %CTOR3() {
|
||||
%X = or bool true, false
|
||||
br label %Cont
|
||||
Cont:
|
||||
br bool %X, label %S, label %T
|
||||
S:
|
||||
store int 24, int* %G2
|
||||
ret void
|
||||
T:
|
||||
ret void
|
||||
}
|
||||
|
||||
bool %accessor() {
|
||||
%V = load bool* %CTORGV ;; constant true
|
||||
ret bool %V
|
||||
|
Loading…
x
Reference in New Issue
Block a user