aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenFunction.cpp
diff options
context:
space:
mode:
authorJames Dennett <jdennett@google.com>2012-06-15 22:10:14 +0000
committerJames Dennett <jdennett@google.com>2012-06-15 22:10:14 +0000
commitbe30245442a2a631a4f12607c22e2cb236722407 (patch)
tree3b156afc71dc2e261802576e40e90fd1ade23d58 /clang/lib/CodeGen/CodeGenFunction.cpp
parentaff65827fb0eb641cf6aba3622e13af57f1dd43b (diff)
downloadllvm-be30245442a2a631a4f12607c22e2cb236722407.zip
llvm-be30245442a2a631a4f12607c22e2cb236722407.tar.gz
llvm-be30245442a2a631a4f12607c22e2cb236722407.tar.bz2
Documentation cleanup:
* Escaped Objective-C @keywords in Doxygen comments; * Documented more accurate \params; * Exposed some more summaries using \brief. llvm-svn: 158559
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r--clang/lib/CodeGen/CodeGenFunction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp
index dfb04b4..ceffbd4 100644
--- a/clang/lib/CodeGen/CodeGenFunction.cpp
+++ b/clang/lib/CodeGen/CodeGenFunction.cpp
@@ -687,10 +687,10 @@ void CodeGenFunction::ErrorUnsupported(const Stmt *S, const char *Type,
/// emitNonZeroVLAInit - Emit the "zero" initialization of a
/// variable-length array whose elements have a non-zero bit-pattern.
///
+/// \param baseType the inner-most element type of the array
/// \param src - a char* pointing to the bit-pattern for a single
/// base element of the array
/// \param sizeInChars - the total size of the VLA, in chars
-/// \param align - the total alignment of the VLA
static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType,
llvm::Value *dest, llvm::Value *src,
llvm::Value *sizeInChars) {