From eb14970fd09c97850e223aa2c3c00f932401c291 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Fri, 14 Jun 2013 17:10:50 +0200 Subject: [PATCH] Minor nested context doc comment improval. --- ir/irfunction.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/irfunction.h b/ir/irfunction.h index 28573049..7bfa1423 100644 --- a/ir/irfunction.h +++ b/ir/irfunction.h @@ -112,8 +112,8 @@ struct IrFunction llvm::Value* thisArg; // class/struct 'this' arg llvm::Value* nestArg; // nested function 'this' arg - llvm::Value* nestedVar; // nested var alloca - llvm::StructType* frameType; // type of nested context (not for -nested-ctx=array) + llvm::Value* nestedVar; // alloca for the nested context of this function + llvm::StructType* frameType; // type of nested context // number of enclosing functions with variables accessed by nested functions // (-1 if neither this function nor any enclosing ones access variables from enclosing functions) int depth;