@@ -5,7 +5,7 @@ include "llvm/Target/Target.td"
5
5
class RISCVExtension<string name, int major, int minor, string fieldname,
6
6
string desc, list<SubtargetFeature> implies = [],
7
7
string value = "true">
8
- : SubtargetFeature<name, fieldname, value, desc, implies> {
8
+ : SubtargetFeature<name, fieldname, value, desc, implies> {
9
9
int MajorVersion = major;
10
10
int MinorVersion = minor;
11
11
bit Experimental = false;
@@ -37,15 +37,15 @@ class RISCVProcessorModel<string n,
37
37
list<SubtargetFeature> f,
38
38
list<SubtargetFeature> tunef = [],
39
39
string default_march = "">
40
- : ProcessorModel<n, m, f, tunef> {
40
+ : ProcessorModel<n, m, f, tunef> {
41
41
string DefaultMarch = default_march;
42
42
}
43
43
44
44
class RISCVTuneProcessorModel<string n,
45
45
SchedMachineModel m,
46
46
list<SubtargetFeature> tunef = [],
47
47
list<SubtargetFeature> f = []>
48
- : ProcessorModel<n, m, f,tunef>;
48
+ : ProcessorModel<n, m, f,tunef>;
49
49
50
50
def GENERIC_RV32 : RISCVProcessorModel<"generic-rv32",
51
51
NoSchedModel,
0 commit comments