mirror of
https://github.com/github/codeql.git
synced 2026-01-28 13:53:10 +01:00
This PR separates the core cpp packs into `codeql/cpp-queries` and `codeql/cpp-all`. There are very few lines of code changed. Almost all changes are moving files around.
12 lines
501 B
Plaintext
12 lines
501 B
Plaintext
/**
|
|
* Outputs a representation of the IR as a control flow graph.
|
|
*
|
|
* This file contains the actual implementation of `PrintIR.ql`. For test cases and very small
|
|
* databases, `PrintIR.ql` can be run directly to dump the IR for the entire database. For most
|
|
* uses, however, it is better to write a query that imports `PrintIR.qll`, extends
|
|
* `PrintIRConfiguration`, and overrides `shouldPrintFunction()` to select a subset of functions to
|
|
* dump.
|
|
*/
|
|
|
|
import implementation.aliased_ssa.PrintIR
|