1 witchel 1.1.2.1 // TempBuilder.java, created Thu Oct 21 17:58:01 1999 by pnkfelix 2 witchel 1.1.2.1 // Copyright (C) 1999 Felix S. Klock II <pnkfelix@mit.edu> 3 witchel 1.1.2.1 // Licensed under the terms of the GNU GPL; see COPYING for details. 4 witchel 1.1.2.1 package harpoon.Backend.MIPS; 5 witchel 1.1.2.1 6 witchel 1.1.2.1 import harpoon.Temp.Temp; 7 witchel 1.1.2.1 import harpoon.Temp.TempFactory; 8 witchel 1.1.2.1 import harpoon.IR.Tree.Typed; 9 witchel 1.1.2.1 10 witchel 1.1.2.1 /** 11 cananian 1.1.2.2 * <code>TempBuilder</code> for MIPS. 12 witchel 1.1.2.1 * 13 cananian 1.1.2.2 * @author C. Scott Ananian <cananian@alumni.princeton.edu> 14 cananian 1.2 * @version $Id: TempBuilder.java,v 1.2 2002/02/25 21:01:47 cananian Exp $ 15 witchel 1.1.2.1 */ 16 cananian 1.1.2.2 public class TempBuilder extends harpoon.Backend.StrongARM.TempBuilder { 17 witchel 1.1.2.1 18 witchel 1.1.2.1 /** Creates a <code>TempBuilder</code>. */ 19 cananian 1.1.2.2 public TempBuilder() { super(); } 20 cananian 1.1.2.2 21 cananian 1.2 }