diff options
author | Chris Lattner <sabre@nondot.org> | 2004-04-04 17:30:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-04-04 17:30:06 +0000 |
commit | 092d260fc17d22f4d5d6089b023a73c622d817e2 (patch) | |
tree | fa48d44ed54a127abaab083b0e7e9da4f3c5abee /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | bc8ba73cf1cc81d223672d019c4da0095170c461 (diff) | |
download | bcm5719-llvm-092d260fc17d22f4d5d6089b023a73c622d817e2.tar.gz bcm5719-llvm-092d260fc17d22f4d5d6089b023a73c622d817e2.zip |
Adjust to new gep_type_iterator prototypes.
llvm-svn: 12644
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index cc17e99a967..2f3ac2b91b6 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -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 |