aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-06-18 23:05:21 +0000
committerChris Lattner <sabre@nondot.org>2009-06-18 23:05:21 +0000
commitbb4688a9cf385ccada90ebeb04b3ba5827bf213d (patch)
treed9df4fffa7f028b0bf1afcb07304644d1c17409c /tools
parentf9f065e45500823cdeb25bde2154d871ab6e9125 (diff)
fix file header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73733 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvm-mc/llvm-mc.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/tools/llvm-mc/llvm-mc.cpp b/tools/llvm-mc/llvm-mc.cpp
index 80a83d9040..e8e51c5023 100644
--- a/tools/llvm-mc/llvm-mc.cpp
+++ b/tools/llvm-mc/llvm-mc.cpp
@@ -1,4 +1,4 @@
-//===-- llvm-dis.cpp - The low-level LLVM disassembler --------------------===//
+//===-- llvm-mc.cpp - Machine Code Hacking Driver -------------------------===//
//
// The LLVM Compiler Infrastructure
//
@@ -7,12 +7,8 @@
//
//===----------------------------------------------------------------------===//
//
-// This utility may be invoked in the following manner:
-// llvm-dis [options] - Read LLVM bitcode from stdin, write asm to stdout
-// llvm-dis [options] x.bc - Read LLVM bitcode from the x.bc file, write asm
-// to the x.ll file.
-// Options:
-// --help - Output information about command line switches
+// This utility is a simple driver that allows command line hacking on machine
+// code.
//
//===----------------------------------------------------------------------===//