@@ -84,14 +84,14 @@ llvm::ModuleSlotTracker &getModuleSlotTrackerFor(const llvm::Value *V);
8484[[nodiscard]] std::string llvmIRToString (const llvm::Value *V);
8585
8686/* *
87- * @brief Similar to llvmIRToString, but removes the metadata from the output as
88- * they are not always stable. Prefer this function over llvmIRToString, if you
89- * are comparing the string representations of LLVM iR instructions.
87+ * @brief Similar to llvmIRToString() , but removes the metadata from the output
88+ * as they are not always stable. Prefer this function over llvmIRToString, if
89+ * you are comparing the string representations of LLVM iR instructions.
9090 */
9191[[nodiscard]] std::string llvmIRToStableString (const llvm::Value *V);
9292
9393/* *
94- * @brief Same as @link( llvmIRToString) but tries to shorten the
94+ * @brief Same as llvmIRToString( ) but tries to shorten the
9595 * resulting string
9696 */
9797std::string llvmIRToShortString (const llvm::Value *V);
@@ -129,7 +129,7 @@ globalValuesUsedinFunction(const llvm::Function *F);
129129 * Only Instructions and GlobalVariables have 'real' ID's, i.e. annotated meta
130130 * data. Formal arguments cannot be annotated with metadata in LLVM. Therefore,
131131 * a formal arguments ID will look like this:
132- * <function_name>.<#argument>
132+ * ` <function_name>.<#argument>`
133133 *
134134 * ZeroValue will have -1 as ID by default.
135135 *
@@ -161,7 +161,7 @@ int getFunctionArgumentNr(const llvm::Argument *Arg);
161161 *
162162 * @brief Returns the n-th LLVM Argument of a given LLVM Function.
163163 * @param F Function to retrieve the Arguments from.
164- * @param argNo Argument number.
164+ * @param ArgNo Argument number.
165165 * @return LLVM Argument or nullptr, if argNo invalid.
166166 */
167167const llvm::Argument *getNthFunctionArgument (const llvm::Function *F,
@@ -172,7 +172,7 @@ const llvm::Argument *getNthFunctionArgument(const llvm::Function *F,
172172 *
173173 * @brief Returns the n-th LLVM Instruction of a given LLVM Function.
174174 * @param F Function to retrieve the Instruction from.
175- * @param instNo Instruction number.
175+ * @param Idx Instruction number.
176176 * @return LLVM Instruction or nullptr, if instNo invalid.
177177 */
178178const llvm::Instruction *getNthInstruction (const llvm::Function *F,
@@ -187,7 +187,7 @@ const llvm::Instruction *getLastInstructionOf(const llvm::Function *F);
187187 * @brief Returns the n-th LLVM Termination Instruction of a given LLVM
188188 * Function.
189189 * @param F Function to retrieve the Termination Instruction from.
190- * @param termInstNo Termination Instruction number.
190+ * @param TermInstNo Termination Instruction number.
191191 * @return LLVM Instruction or nullptr, if termInstNo invalid.
192192 */
193193const llvm::Instruction *getNthTermInstruction (const llvm::Function *F,
@@ -199,7 +199,7 @@ const llvm::Instruction *getNthTermInstruction(const llvm::Function *F,
199199 * @brief Returns the n-th LLVM Store Instruction of a given LLVM
200200 * Function.
201201 * @param F Function to retrieve the Store Instruction from.
202- * @param termInstNo Store Instruction number.
202+ * @param TermInstNo Store Instruction number.
203203 * @return LLVM Store Instruction or nullptr, if stoNo invalid.
204204 */
205205const llvm::StoreInst *getNthStoreInstruction (const llvm::Function *F,
@@ -230,7 +230,7 @@ std::string getModuleNameFromVal(const llvm::Value *V);
230230/* *
231231 * @brief Computes a hash value for a given LLVM Module.
232232 * @param M LLVM Module.
233- * @param considerIdentifier If true, module identifier will be considered for
233+ * @param ConsiderIdentifier If true, module identifier will be considered for
234234 * hash computation.
235235 * @return Hash value.
236236 */
0 commit comments