Home | History | Annotate | Download | only in CommandGuide
      1 llvm-stress - generate random .ll files
      2 =======================================
      3 
      4 SYNOPSIS
      5 --------
      6 
      7 :program:`llvm-stress` [-size=filesize] [-seed=initialseed] [-o=outfile]
      8 
      9 DESCRIPTION
     10 -----------
     11 
     12 The :program:`llvm-stress` tool is used to generate random ``.ll`` files that
     13 can be used to test different components of LLVM.
     14 
     15 OPTIONS
     16 -------
     17 
     18 .. option:: -o filename
     19 
     20  Specify the output filename.
     21 
     22 .. option:: -size size
     23 
     24  Specify the size of the generated ``.ll`` file.
     25 
     26 .. option:: -seed seed
     27 
     28  Specify the seed to be used for the randomly generated instructions.
     29 
     30 EXIT STATUS
     31 -----------
     32 
     33 :program:`llvm-stress` returns 0.
     34 
     35