diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-08 16:06:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-08 16:06:52 +0000 |
commit | 22e90434f3c5821fc694db8b6881e279037f5e5a (patch) | |
tree | 33d04f679905dd8910a00d6c051e59202fdb9fd3 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 36f0f5e81a2fb56fd9031b5cbf4d0294f139b6a5 (diff) | |
download | bcm5719-llvm-22e90434f3c5821fc694db8b6881e279037f5e5a.tar.gz bcm5719-llvm-22e90434f3c5821fc694db8b6881e279037f5e5a.zip |
Add support for recording arguments passed through the ... of a varargs function
llvm-svn: 6040
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 586828a1d14..4dacf22c15f 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -68,6 +68,7 @@ struct ExecutionContext { BasicBlock::iterator CurInst; // The next instruction to execute MethodInfo *MethInfo; // The MethInfo annotation for the function std::vector<ValuePlaneTy> Values;// ValuePlanes for each type + std::vector<GenericValue> VarArgs; // Values passed through an ellipsis BasicBlock *PrevBB; // The previous BB or null if in first BB CallInst *Caller; // Holds the call that called subframes. |