diff options
| author | Jim Grosbach <grosbach@apple.com> | 2009-10-31 22:12:44 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2009-10-31 22:12:44 +0000 |
| commit | 259c37cc55816e129b67c34d2820ba360364a96b (patch) | |
| tree | cbb7aa648caf8c3c2b28a47949e3fed8e7d5e596 | |
| parent | a546dcf4183a7e5cd58412f6cef3165c7988acc0 (diff) | |
| download | bcm5719-llvm-259c37cc55816e129b67c34d2820ba360364a96b.tar.gz bcm5719-llvm-259c37cc55816e129b67c34d2820ba360364a96b.zip | |
Grammar tweak to comments
llvm-svn: 85693
| -rw-r--r-- | llvm/test/CodeGen/Thumb2/thumb2-mov2.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/Thumb2/thumb2-mov2.ll b/llvm/test/CodeGen/Thumb2/thumb2-mov2.ll index 64e2ddcf3fe..3d58e44fd74 100644 --- a/llvm/test/CodeGen/Thumb2/thumb2-mov2.ll +++ b/llvm/test/CodeGen/Thumb2/thumb2-mov2.ll @@ -15,7 +15,7 @@ define i32 @t2MOVTi16_test_1(i32 %a) { ; CHECK: movt r0, #1234 %1 = shl i32 255, 8 %2 = shl i32 1234, 8 - %3 = or i32 %1, 255 ; This give us 0xFFFF in %3 + %3 = or i32 %1, 255 ; This gives us 0xFFFF in %3 %4 = shl i32 %2, 8 ; This gives us (1234 << 16) in %4 %5 = and i32 %a, %3 %6 = or i32 %4, %5 @@ -28,7 +28,7 @@ define i32 @t2MOVTi16_test_2(i32 %a) { ; CHECK: movt r0, #1234 %1 = shl i32 255, 8 %2 = shl i32 1234, 8 - %3 = or i32 %1, 255 ; This give us 0xFFFF in %3 + %3 = or i32 %1, 255 ; This gives us 0xFFFF in %3 %4 = shl i32 %2, 6 %5 = and i32 %a, %3 %6 = shl i32 %4, 2 ; This gives us (1234 << 16) in %6 @@ -42,7 +42,7 @@ define i32 @t2MOVTi16_test_3(i32 %a) { ; CHECK: movt r0, #1234 %1 = shl i32 255, 8 %2 = shl i32 1234, 8 - %3 = or i32 %1, 255 ; This give us 0xFFFF in %3 + %3 = or i32 %1, 255 ; This gives us 0xFFFF in %3 %4 = shl i32 %2, 6 %5 = and i32 %a, %3 %6 = shl i32 %4, 2 ; This gives us (1234 << 16) in %6 @@ -61,7 +61,7 @@ define i32 @t2MOVTi16_test_nomatch_1(i32 %a) { ; CHECK: #1720320 %1 = shl i32 255, 8 %2 = shl i32 1234, 8 - %3 = or i32 %1, 255 ; This give us 0xFFFF in %3 + %3 = or i32 %1, 255 ; This gives us 0xFFFF in %3 %4 = shl i32 %2, 6 %5 = and i32 %a, %3 %6 = shl i32 %4, 2 ; This gives us (1234 << 16) in %6 |

