Silence -Wunused-variable in release builds.
[llvm/stm8.git] / docs / CommandGuide / llvm-diff.pod
blobffe0b4896fdd862027f609a08b3406435f8a8138
1 =pod
3 =head1 NAME
5 llvm-diff - LLVM structural 'diff'
7 =head1 SYNOPSIS
9 B<llvm-diff> [I<options>] I<module 1> I<module 2> [I<global name ...>]
11 =head1 DESCRIPTION
13 B<llvm-diff> compares the structure of two LLVM modules, primarily
14 focusing on differences in function definitions.  Insignificant
15 differences, such as changes in the ordering of globals or in the
16 names of local values, are ignored.
18 An input module will be interpreted as an assembly file if its name
19 ends in '.ll';  otherwise it will be read in as a bitcode file.
21 If a list of global names is given, just the values with those names
22 are compared; otherwise, all global values are compared, and
23 diagnostics are produced for globals which only appear in one module
24 or the other.
26 B<llvm-diff> compares two functions by comparing their basic blocks,
27 beginning with the entry blocks.  If the terminators seem to match,
28 then the corresponding successors are compared; otherwise they are
29 ignored.  This algorithm is very sensitive to changes in control flow,
30 which tend to stop any downstream changes from being detected.
32 B<llvm-diff> is intended as a debugging tool for writers of LLVM
33 passes and frontends.  It does not have a stable output format.
35 =head1 EXIT STATUS
37 If B<llvm-diff> finds no differences between the modules, it will exit
38 with 0 and produce no output.  Otherwise it will exit with a non-zero
39 value.
41 =head1 BUGS
43 Many important differences, like changes in linkage or function
44 attributes, are not diagnosed.
46 Changes in memory behavior (for example, coalescing loads) can cause
47 massive detected differences in blocks.
49 =head1 AUTHORS
51 Maintained by the LLVM Team (L<http://llvm.org/>).
53 =cut