[llvm-commits] [llvm] r73733 - /llvm/trunk/tools/llvm-mc/llvm-mc.cpp
Chris Lattner
sabre at nondot.org
Thu Jun 18 16:05:22 PDT 2009
Author: lattner
Date: Thu Jun 18 18:05:21 2009
New Revision: 73733
URL: http://llvm.org/viewvc/llvm-project?rev=73733&view=rev
Log:
fix file header
Modified:
llvm/trunk/tools/llvm-mc/llvm-mc.cpp
Modified: llvm/trunk/tools/llvm-mc/llvm-mc.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-mc/llvm-mc.cpp?rev=73733&r1=73732&r2=73733&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-mc/llvm-mc.cpp (original)
+++ llvm/trunk/tools/llvm-mc/llvm-mc.cpp Thu Jun 18 18:05:21 2009
@@ -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.
//
//===----------------------------------------------------------------------===//
More information about the llvm-commits
mailing list