Fix grammar-o
authorChris Lattner <sabre@nondot.org>
Mon, 8 Sep 2003 17:45:18 +0000 (17:45 +0000)
committerChris 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

index 6831ef0bc1b91059808fd67458fd08c3793307d8..1d760afe9081b7f0437bdb68c7774049d954c9ec 100644 (file)
@@ -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
 }