@@ -90,14 +90,14 @@ llvm::ModuleSlotTracker &getModuleSlotTrackerFor(const llvm::Value *V);
9090[[nodiscard]] std::string llvmIRToString (const llvm::Value *V);
9191
9292/* *
93- * @brief Similar to llvmIRToString, but removes the metadata from the output as
94- * they are not always stable. Prefer this function over llvmIRToString, if you
95- * are comparing the string representations of LLVM iR instructions.
93+ * @brief Similar to llvmIRToString() , but removes the metadata from the output
94+ * as they are not always stable. Prefer this function over llvmIRToString, if
95+ * you are comparing the string representations of LLVM iR instructions.
9696 */
9797[[nodiscard]] std::string llvmIRToStableString (const llvm::Value *V);
9898
9999/* *
100- * @brief Same as @link( llvmIRToString) but tries to shorten the
100+ * @brief Same as llvmIRToString( ) but tries to shorten the
101101 * resulting string
102102 */
103103std::string llvmIRToShortString (const llvm::Value *V);
@@ -135,7 +135,7 @@ globalValuesUsedinFunction(const llvm::Function *F);
135135 * Only Instructions and GlobalVariables have 'real' ID's, i.e. annotated meta
136136 * data. Formal arguments cannot be annotated with metadata in LLVM. Therefore,
137137 * a formal arguments ID will look like this:
138- * <function_name>.<#argument>
138+ * ` <function_name>.<#argument>`
139139 *
140140 * ZeroValue will have -1 as ID by default.
141141 *
@@ -167,7 +167,7 @@ int getFunctionArgumentNr(const llvm::Argument *Arg);
167167 *
168168 * @brief Returns the n-th LLVM Argument of a given LLVM Function.
169169 * @param F Function to retrieve the Arguments from.
170- * @param argNo Argument number.
170+ * @param ArgNo Argument number.
171171 * @return LLVM Argument or nullptr, if argNo invalid.
172172 */
173173const llvm::Argument *getNthFunctionArgument (const llvm::Function *F,
@@ -178,7 +178,7 @@ const llvm::Argument *getNthFunctionArgument(const llvm::Function *F,
178178 *
179179 * @brief Returns the n-th LLVM Instruction of a given LLVM Function.
180180 * @param F Function to retrieve the Instruction from.
181- * @param instNo Instruction number.
181+ * @param Idx Instruction number.
182182 * @return LLVM Instruction or nullptr, if instNo invalid.
183183 */
184184const llvm::Instruction *getNthInstruction (const llvm::Function *F,
@@ -193,7 +193,7 @@ const llvm::Instruction *getLastInstructionOf(const llvm::Function *F);
193193 * @brief Returns the n-th LLVM Termination Instruction of a given LLVM
194194 * Function.
195195 * @param F Function to retrieve the Termination Instruction from.
196- * @param termInstNo Termination Instruction number.
196+ * @param TermInstNo Termination Instruction number.
197197 * @return LLVM Instruction or nullptr, if termInstNo invalid.
198198 */
199199const llvm::Instruction *getNthTermInstruction (const llvm::Function *F,
@@ -205,7 +205,7 @@ const llvm::Instruction *getNthTermInstruction(const llvm::Function *F,
205205 * @brief Returns the n-th LLVM Store Instruction of a given LLVM
206206 * Function.
207207 * @param F Function to retrieve the Store Instruction from.
208- * @param termInstNo Store Instruction number.
208+ * @param TermInstNo Store Instruction number.
209209 * @return LLVM Store Instruction or nullptr, if stoNo invalid.
210210 */
211211const llvm::StoreInst *getNthStoreInstruction (const llvm::Function *F,
@@ -236,7 +236,7 @@ std::string getModuleNameFromVal(const llvm::Value *V);
236236/* *
237237 * @brief Computes a hash value for a given LLVM Module.
238238 * @param M LLVM Module.
239- * @param considerIdentifier If true, module identifier will be considered for
239+ * @param ConsiderIdentifier If true, module identifier will be considered for
240240 * hash computation.
241241 * @return Hash value.
242242 */
0 commit comments