1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Fix typo in comment. Add prototype for getConstantExprValue().

llvm-svn: 10390
This commit is contained in:
Brian Gaeke 2003-12-11 00:23:28 +00:00
parent e7599245cb
commit 7fe399f169

View File

@ -26,9 +26,10 @@ namespace llvm {
struct FunctionInfo; // Defined in ExecutionAnnotations.h
class gep_type_iterator;
class ConstantExpr;
// AllocaHolder - Object to track all of the blocks of memory allocated by
// alloca. When the function returns, this object is poped off the execution
// alloca. When the function returns, this object is popped off the execution
// stack, which causes the dtor to be run, which frees all the alloca'd memory.
//
class AllocaHolder {
@ -174,6 +175,7 @@ private: // Helper functions
void initializeExecutionEngine();
void initializeExternalFunctions();
GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
GenericValue getOperandValue(Value *V, ExecutionContext &SF);
GenericValue executeCastOperation(Value *SrcVal, const Type *Ty,
ExecutionContext &SF);