Testcase for PR179

llvm-svn: 10455
This commit is contained in:
Chris Lattner 2003-12-14 04:46:07 +00:00
parent 4f7f017ab5
commit 29da20f96c
1 changed files with 17 additions and 0 deletions

View 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
}