diff options
author | Chris Lattner <sabre@nondot.org> | 2011-11-27 06:54:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-11-27 06:54:59 +0000 |
commit | 6a144a2227f8aaf6d4c49bc22f5424a34b778166 (patch) | |
tree | 3a12469469c418eae050475d7c2cce599c3c5a67 /llvm/test/Other | |
parent | ebed15e973d903cfe012bd0875840499602e2f44 (diff) | |
download | bcm5719-llvm-6a144a2227f8aaf6d4c49bc22f5424a34b778166.tar.gz bcm5719-llvm-6a144a2227f8aaf6d4c49bc22f5424a34b778166.zip |
Upgrade syntax of tests using volatile instructions to use 'load volatile' instead of 'volatile load', which is archaic.
llvm-svn: 145171
Diffstat (limited to 'llvm/test/Other')
-rw-r--r-- | llvm/test/Other/lint.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Other/lint.ll b/llvm/test/Other/lint.ll index 4aa984e2e1b..ca2b1a336a1 100644 --- a/llvm/test/Other/lint.ll +++ b/llvm/test/Other/lint.ll @@ -151,7 +151,7 @@ entry: exit: %t3 = phi i32* [ %t4, %exit ] %t4 = bitcast i32* %t3 to i32* - %x = volatile load i32* %t3 + %x = load volatile i32* %t3 br label %exit } |