From: Devang Patel Date: Fri, 1 Oct 2010 19:22:16 +0000 (+0000) Subject: Fix dbg_declare signature in document. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4c7c0c68f1944d3aac14689c257c4eceba161526;p=oota-llvm.git Fix dbg_declare signature in document. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115326 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/SourceLevelDebugging.html b/docs/SourceLevelDebugging.html index 19e086867f4..4e65bf4a476 100644 --- a/docs/SourceLevelDebugging.html +++ b/docs/SourceLevelDebugging.html @@ -789,11 +789,11 @@ DW_TAG_return_variable = 258
-  void %llvm.dbg.declare({}*, metadata)
+  void %llvm.dbg.declare(metadata, metadata)
 

This intrinsic provides information about a local element (ex. variable.) The - first argument is the alloca for the variable, cast to a {}*. The + first argument is metadata holding alloca for the variable.. The second argument is the %llvm.dbg.variable containing the description of the variable.