forked from OSchip/llvm-project
parent
c2be148276
commit
9caf224833
|
@ -38,11 +38,11 @@ int %test() {
|
||||||
%B = call int* %getp(%intpair* %C)
|
%B = call int* %getp(%intpair* %C)
|
||||||
%A1 = load int* %A
|
%A1 = load int* %A
|
||||||
|
|
||||||
store int 123, int* %B ; Store cannot alias %A
|
store int 123, int* %B ; Store does alias %A
|
||||||
|
|
||||||
%A2 = load int* %A
|
%A2 = load int* %A
|
||||||
%ELIM_x = sub int %A1, %A2
|
%x = sub int %A1, %A2
|
||||||
ret int %ELIM_x
|
ret int %x
|
||||||
}
|
}
|
||||||
|
|
||||||
int %test2() { ; Test context sensitivity
|
int %test2() { ; Test context sensitivity
|
||||||
|
|
Loading…
Reference in New Issue