Skip to content

Commit 75d26c4

Browse files
committed
fixup! indentation
1 parent df505d8 commit 75d26c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/test/TableGen/riscv-target-def.td

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include "llvm/Target/Target.td"
55
class RISCVExtension<string name, int major, int minor, string fieldname,
66
string desc, list<SubtargetFeature> implies = [],
77
string value = "true">
8-
: SubtargetFeature<name, fieldname, value, desc, implies> {
8+
: SubtargetFeature<name, fieldname, value, desc, implies> {
99
int MajorVersion = major;
1010
int MinorVersion = minor;
1111
bit Experimental = false;
@@ -37,15 +37,15 @@ class RISCVProcessorModel<string n,
3737
list<SubtargetFeature> f,
3838
list<SubtargetFeature> tunef = [],
3939
string default_march = "">
40-
: ProcessorModel<n, m, f, tunef> {
40+
: ProcessorModel<n, m, f, tunef> {
4141
string DefaultMarch = default_march;
4242
}
4343

4444
class RISCVTuneProcessorModel<string n,
4545
SchedMachineModel m,
4646
list<SubtargetFeature> tunef = [],
4747
list<SubtargetFeature> f = []>
48-
: ProcessorModel<n, m, f,tunef>;
48+
: ProcessorModel<n, m, f,tunef>;
4949

5050
def GENERIC_RV32 : RISCVProcessorModel<"generic-rv32",
5151
NoSchedModel,

0 commit comments

Comments
 (0)