projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
680f6a4
)
Fix grammar-o
author
Chris Lattner
<sabre@nondot.org>
Mon, 8 Sep 2003 17:45:18 +0000
(17:45 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Mon, 8 Sep 2003 17:45:18 +0000
(17:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8392
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/Analysis/LoadVN/RLE-Preserve-Volatile.ll
patch
|
blob
|
history
diff --git
a/test/Analysis/LoadVN/RLE-Preserve-Volatile.ll
b/test/Analysis/LoadVN/RLE-Preserve-Volatile.ll
index 6831ef0bc1b91059808fd67458fd08c3793307d8..1d760afe9081b7f0437bdb68c7774049d954c9ec 100644
(file)
--- a/
test/Analysis/LoadVN/RLE-Preserve-Volatile.ll
+++ b/
test/Analysis/LoadVN/RLE-Preserve-Volatile.ll
@@
-2,8
+2,8
@@
; RUN: llvm-as < %s | opt -load-vn -gcse -instcombine | dis | grep sub
int %test(int* %P) {
- %X =
load volatile
int* %P
- %Y =
load volatile
int* %P
+ %X =
volatile load
int* %P
+ %Y =
volatile load
int* %P
%Z = sub int %X, %Y
ret int %Z
}