Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
Signed-off-by: Alyssa Rosenzweig <[email protected]>
  • Loading branch information
alyssarosenzweig committed Apr 29, 2024
1 parent 73937cd commit d963e5b
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,12 @@ namespace {
// Complex register class handling
switch (IROp->Op) {
case IR::OP_LOADCONTEXT: return IROp->C<IR::IROp_LoadContext>()->Class;

case IR::OP_LOADREGISTER: return IROp->C<IR::IROp_LoadRegister>()->Class;

case IR::OP_LOADCONTEXTINDEXED: return IROp->C<IR::IROp_LoadContextIndexed>()->Class;

case IR::OP_LOADMEM:
case IR::OP_LOADMEMTSO: return IROp->C<IR::IROp_LoadMem>()->Class;

case IR::OP_FILLREGISTER: return IROp->C<IR::IROp_FillRegister>()->Class;

default:
// Unreachable
return FEXCore::IR::InvalidClass;
default: return FEXCore::IR::InvalidClass;
}
};
} // Anonymous namespace
Expand Down

0 comments on commit d963e5b

Please sign in to comment.