diff options
author | Chris Lattner <sabre@nondot.org> | 2001-07-21 21:05:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-07-21 21:05:39 +0000 |
commit | a99495ae53146451c970789967672dd9b79642d3 (patch) | |
tree | 1ad3b512e42cd146a43c2508fd071aa5fda3097a | |
parent | ea1c7b6f7d9b14eb6124a7db904b0c322c5511ee (diff) |
Instructions for use
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llc/README.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/llc/README.txt b/tools/llc/README.txt new file mode 100644 index 0000000000..a87ecb0923 --- /dev/null +++ b/tools/llc/README.txt @@ -0,0 +1,14 @@ + +To run this utility: + +For a list of options: + llc -h + +To see the generated machine instructions: + llc -debug_select 1 <bytecode-file> + +I left that as a "debugging" option since it is not real code. +Use 2 instead of 1 to dump the mapping between LLVM instructions and +Machine instructions, and 5 to see the patterns chosen by BURG. +These outputs aren't very clean. + |