/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package targets.mips; import middlewares.BasicBlockMiddleware; import common.Code; import java.util.LinkedHashMap; import API.MiddlewareInterface; /** * * @author EUGENIO CARVALHO */ class MipsLoadStoreMiddleware implements MiddlewareInterface { public MipsLoadStoreMiddleware(BasicBlockMiddleware ocorrences) { } @Override public void Exec(Code c, LinkedHashMap cp) throws Exception { // throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } }