From 8b719e4c4e4af12b224b924c69c7d85d59da36db Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Thu, 20 Oct 2011 11:49:54 -0700 Subject: [PATCH] Fix warnings reported by doxygen --- ctx.h | 2 +- opt.cpp | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ctx.h b/ctx.h index 22662c59..a0400cfc 100644 --- a/ctx.h +++ b/ctx.h @@ -60,7 +60,7 @@ class FunctionEmitContext { public: /** Create a new FunctionEmitContext. @param function The Function object representing the function - @param sym Symbol that corresponds to the function + @param funSym Symbol that corresponds to the function @param llvmFunction LLVM function in the current module that corresponds to the function @param firstStmtPos Source file position of the first statement in the diff --git a/opt.cpp b/opt.cpp index ca242870..9efe63a4 100644 --- a/opt.cpp +++ b/opt.cpp @@ -1643,10 +1643,13 @@ static void lPrintVector(const char *info, llvm::Value *elements[ISPC_MAX_NVEC]) @param vec Vector to be scalarized @param scalarizedVector Array in which to store the individual vector - elements + elements @param vectorLength Number of elements in the given vector. (The - passed scalarizedVector array must also be at least - this length as well.) + passed scalarizedVector array must also be at least + this length as well.) + @param phiMap STL map from pointers to PHINodes that we've already + scalarized to the array of Value *s that they were + scalarized into. @returns True if the vector was successfully scalarized and the values in offsets[] are valid; false otherwise */