[llvm-commits] CVS: llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
Chris Lattner
lattner at cs.uiuc.edu
Sun Apr 4 12:31:01 PDT 2004
Changes in directory llvm/lib/ExecutionEngine/Interpreter:
Interpreter.h updated: 1.61 -> 1.62
---
Log message:
Adjust to new gep_type_iterator prototypes.
---
Diffs of the changes: (+3 -1)
Index: llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
diff -u llvm/lib/ExecutionEngine/Interpreter/Interpreter.h:1.61 llvm/lib/ExecutionEngine/Interpreter/Interpreter.h:1.62
--- llvm/lib/ExecutionEngine/Interpreter/Interpreter.h:1.61 Thu Feb 26 01:59:22 2004
+++ llvm/lib/ExecutionEngine/Interpreter/Interpreter.h Sun Apr 4 12:30:06 2004
@@ -25,8 +25,10 @@
namespace llvm {
struct FunctionInfo;
-class gep_type_iterator;
+template<typename T> class generic_gep_type_iterator;
class ConstantExpr;
+typedef generic_gep_type_iterator<User::op_iterator> gep_type_iterator;
+
// AllocaHolder - Object to track all of the blocks of memory allocated by
// alloca. When the function returns, this object is popped off the execution
More information about the llvm-commits
mailing list