]> granicus.if.org Git - llvm/commitdiff
[docs][llvm-readelf] Delete old llvm-readelf.md
authorJames Henderson <jh7370@my.bristol.ac.uk>
Tue, 2 Jul 2019 13:11:34 +0000 (13:11 +0000)
committerJames Henderson <jh7370@my.bristol.ac.uk>
Tue, 2 Jul 2019 13:11:34 +0000 (13:11 +0000)
This was accidentally missed when committing r364800.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364918 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandGuide/llvm-readelf.md [deleted file]

diff --git a/docs/CommandGuide/llvm-readelf.md b/docs/CommandGuide/llvm-readelf.md
deleted file mode 100644 (file)
index a03844d..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# llvm-readelf - a drop-in replacement for readelf
-
-## SYNOPSIS
-
-**llvm-readelf** [*options*]
-
-## DESCRIPTION
-
-**llvm-readelf** is an alias for the [llvm-readobj](llvm-readobj.html) tool with
-a command-line interface and output style more closely resembling GNU
-**readelf**.
-
-Here are some of those differences:
-
-* Uses `--elf-output-style=GNU` by default.
-
-* Allows single-letter grouped flags (e.g. `llvm-readelf -SW` is the same as
-  `llvm-readelf -S -W`).
-
-* Allows use of `-s` as an alias for `--symbols` (versus `--section-headers` in
-  **llvm-readobj**) for GNU **readelf** compatibility.
-
-* Prevents use of `-sr`, `-sd`, `-st` and `-dt` **llvm-readobj** aliases, to
-  avoid conflicting with standard GNU **readelf** grouped flags.
-
-## SEE ALSO
-
-Refer to [llvm-readobj](llvm-readobj.html) for additional information.