[llvm-commits] CVS: reopt/include/reopt/BinInterface/LLVMTrace.h

Brian Gaeke gaeke at cs.uiuc.edu
Sat May 15 23:59:10 PDT 2004


Changes in directory reopt/include/reopt/BinInterface:

LLVMTrace.h updated: 1.4 -> 1.5

---
Log message:

Inline LLVMTrace constructor.


---
Diffs of the changes:  (+2 -2)

Index: reopt/include/reopt/BinInterface/LLVMTrace.h
diff -u reopt/include/reopt/BinInterface/LLVMTrace.h:1.4 reopt/include/reopt/BinInterface/LLVMTrace.h:1.5
--- reopt/include/reopt/BinInterface/LLVMTrace.h:1.4	Wed Nov 19 16:51:43 2003
+++ reopt/include/reopt/BinInterface/LLVMTrace.h	Sat May 15 23:58:05 2004
@@ -33,7 +33,8 @@
   unsigned numberOfEpilogs;
 
 public:
-  LLVMTrace(BinInterface *b, VirtualMem *v, TraceCache *t);
+  LLVMTrace(BinInterface *b, VirtualMem *v, TraceCache *t)
+    : bb (b), vm (v), tr (t) { }
 
   void addTrace(std::map<BasicBlock *, unsigned int> &bbToCid, 
 		std::map<BasicBlock *, unsigned int> &bbToSec,
@@ -87,7 +88,6 @@
 
   //move instruction to before an instruction cid
   void moveInstrBefore(Instruction *I, unsigned int cid);
-
 };
 
 } // end namespace llvm





More information about the llvm-commits mailing list