Lint a module.
Synopsis
Declared in <llvm/Analysis/Lint.h>
void
lintModule(
Module const& M,
bool AbortOnError = false);
Description
This should only be used for debugging, because it plays games with PassManagers and stuff.
Parameters
Name |
Description |
M |
A Module instance is used to store all the information related to an LLVM module. Modules are the top level container of all other LLVM Intermediate Representation (IR) objects. Each module directly contains a list of globals variables, a list of functions, a list of libraries (or other modules) this module depends on, a symbol table, and various data about the target's characteristics. |
Created with MrDocs