Skip to content

Commit

Permalink
Adjust target features
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasSte committed Dec 6, 2024
1 parent 8b54603 commit 6cbd67f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llvm/lib/Target/SBF/SBFSubtarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ SBFSubtarget &SBFSubtarget::initializeSubtargetDependencies(const Triple &TT,
void SBFSubtarget::initializeEnvironment(const Triple &TT) {
assert(TT.getArch() == Triple::sbf && "expected Triple::sbf");
HasJmpExt = false;
HasAlu32 = false;
UseDwarfRIS = false;

// SBFv2 features
Expand All @@ -49,6 +48,8 @@ void SBFSubtarget::initializeEnvironment(const Triple &TT) {
HasPqrClass = false;
NewCallConvention = false;
HasStoreImm = false;
HasAlu32 = false;
HasExplicitSignExt = false;
}

void SBFSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
Expand Down

0 comments on commit 6cbd67f

Please sign in to comment.