mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
Testcase for PR179
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10455 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
94743e4915
commit
15beaf7d65
17
test/Transforms/LICM/2003-12-13-VolatilePromote.ll
Normal file
17
test/Transforms/LICM/2003-12-13-VolatilePromote.ll
Normal file
@ -0,0 +1,17 @@
|
||||
; 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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user