mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-02 22:32:08 +00:00
18 lines
357 B
LLVM
18 lines
357 B
LLVM
|
; RUN: llvm-as < %s | opt -licm | llvm-dis | grep -C1 volatile | grep Loop
|
||
|
|
||
|
%X = global int 7
|
||
|
|
||
|
void %testfunc(int %i) {
|
||
|
br label %Loop
|
||
|
|
||
|
Loop:
|
||
|
%x = volatile load int* %X ; Should not promote this to a register
|
||
|
%x2 = add int %x, 1
|
||
|
store int %x2, int* %X
|
||
|
br bool true, label %Out, label %Loop
|
||
|
|
||
|
Out:
|
||
|
ret void
|
||
|
}
|
||
|
|