mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
4572ce85b0
llvm-svn: 33296
18 lines
376 B
LLVM
18 lines
376 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -licm | llvm-dis | %prcontext volatile 1 | 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
|
|
}
|
|
|