Skip to content

Commit c363153

Browse files
committed
Fix comment & indentation
1 parent 776a241 commit c363153

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

llvm/lib/Target/ARM/ARMISelLowering.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class VectorType;
104104
LSLS, // Flag-setting shift left.
105105
LSRS1, // Flag-setting logical shift right by one bit.
106106
ASRS1, // Flag-setting arithmetic shift right by one bit.
107-
RRX, // Flag-setting shift right one bit with carry in.
107+
RRX, // Shift right one bit with carry in.
108108

109109
ADDC, // Add with carry
110110
ADDE, // Add using carry

llvm/lib/Target/ARM/ARMInstrThumb2.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2807,7 +2807,7 @@ let isCodeGenOnly = 1, Defs = [CPSR] in {
28072807
def t2LSRs1 : T2TwoRegShiftImm<(outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
28082808
"lsrs", ".w\t$Rd, $Rm, #1",
28092809
[(set rGPR:$Rd, CPSR, (ARMlsrs1 rGPR:$Rm))]>,
2810-
Sched<[WriteALU]> {
2810+
Sched<[WriteALU]> {
28112811
let Inst{31-27} = 0b11101;
28122812
let Inst{26-25} = 0b01;
28132813
let Inst{24-21} = 0b0010;
@@ -2821,7 +2821,7 @@ def t2LSRs1 : T2TwoRegShiftImm<(outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
28212821
def t2ASRs1 : T2TwoRegShiftImm<(outs rGPR:$Rd), (ins rGPR:$Rm), IIC_iMOVsi,
28222822
"asrs", ".w\t$Rd, $Rm, #1",
28232823
[(set rGPR:$Rd, CPSR, (ARMasrs1 rGPR:$Rm))]>,
2824-
Sched<[WriteALU]> {
2824+
Sched<[WriteALU]> {
28252825
let Inst{31-27} = 0b11101;
28262826
let Inst{26-25} = 0b01;
28272827
let Inst{24-21} = 0b0010;

0 commit comments

Comments
 (0)