From c76920a2ab8bb5d3f52488a8723e082604fec565 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 1 Jul 2004 02:32:42 +0000 Subject: [PATCH] Added a command page for the llvm-abcd tool. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14513 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CommandGuide/llvm-abcd.html | 44 ++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 docs/CommandGuide/llvm-abcd.html diff --git a/docs/CommandGuide/llvm-abcd.html b/docs/CommandGuide/llvm-abcd.html new file mode 100644 index 00000000000..1048502518e --- /dev/null +++ b/docs/CommandGuide/llvm-abcd.html @@ -0,0 +1,44 @@ + +LLVM: llvm-abcd tool + + +
+

LLVM: llvm-abcd tool

+
+

NAME

llvm-abcd +

SYNOPSIS

llvm-abcd [options] [filename] +

DESCRIPTION

The llvm-abcd command is a small utility for analyzing +bytecode files. The abcd acronym stands for analysis of +bytecode displayer. The tool reads a bytecode file (such as +generated with the llvm-abcd tool) and produces statistical and low level +bytecode format dumps. This tool is probably not of much interest or utility except +for those working directly with the bytecode format. Most LLVM users can just ignore +this tool. +

If filename is omitted or is -, then llvm-abcd reads its input from +standard input. This is useful for combining llvm-abcd in a pipeline. +

+

OPTIONS

+ +

EXIT STATUS

If llvm-abcd succeeds, it will exit with 0. +Otherwise, if an error occurs, it will exit with a non-zero value, usually 1. +

SEE ALSO

llvm-dis +LLVM Bytecode File Format + +
+Maintained by Reid Spencer. +