mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
Grammar tweak to comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85693 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fb6e701f08
commit
6b0b4b3eaf
@ -15,7 +15,7 @@ define i32 @t2MOVTi16_test_1(i32 %a) {
|
|||||||
; CHECK: movt r0, #1234
|
; CHECK: movt r0, #1234
|
||||||
%1 = shl i32 255, 8
|
%1 = shl i32 255, 8
|
||||||
%2 = shl i32 1234, 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
|
%4 = shl i32 %2, 8 ; This gives us (1234 << 16) in %4
|
||||||
%5 = and i32 %a, %3
|
%5 = and i32 %a, %3
|
||||||
%6 = or i32 %4, %5
|
%6 = or i32 %4, %5
|
||||||
@ -28,7 +28,7 @@ define i32 @t2MOVTi16_test_2(i32 %a) {
|
|||||||
; CHECK: movt r0, #1234
|
; CHECK: movt r0, #1234
|
||||||
%1 = shl i32 255, 8
|
%1 = shl i32 255, 8
|
||||||
%2 = shl i32 1234, 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
|
%4 = shl i32 %2, 6
|
||||||
%5 = and i32 %a, %3
|
%5 = and i32 %a, %3
|
||||||
%6 = shl i32 %4, 2 ; This gives us (1234 << 16) in %6
|
%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
|
; CHECK: movt r0, #1234
|
||||||
%1 = shl i32 255, 8
|
%1 = shl i32 255, 8
|
||||||
%2 = shl i32 1234, 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
|
%4 = shl i32 %2, 6
|
||||||
%5 = and i32 %a, %3
|
%5 = and i32 %a, %3
|
||||||
%6 = shl i32 %4, 2 ; This gives us (1234 << 16) in %6
|
%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
|
; CHECK: #1720320
|
||||||
%1 = shl i32 255, 8
|
%1 = shl i32 255, 8
|
||||||
%2 = shl i32 1234, 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
|
%4 = shl i32 %2, 6
|
||||||
%5 = and i32 %a, %3
|
%5 = and i32 %a, %3
|
||||||
%6 = shl i32 %4, 2 ; This gives us (1234 << 16) in %6
|
%6 = shl i32 %4, 2 ; This gives us (1234 << 16) in %6
|
||||||
|
Loading…
Reference in New Issue
Block a user