Skip to content

Commit

Permalink
cmd/ll2go: add command documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mewmew committed Aug 15, 2017
1 parent 5cca6a9 commit c0fd871
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions cmd/ll2go/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// The ll2go tool decompiles LLVM IR assembly to Go source code (*.ll -> *.go).
//
// The input of ll2go is LLVM IR assembly and the output is unpolished Go source
// code.
//
// Usage:
//
// ll2go [OPTION]... FILE.ll...
//
// Flags:
//
// -funcs string
// comma-separated list of functions to parse
// -q suppress non-error messages
package main

import (
Expand Down

0 comments on commit c0fd871

Please sign in to comment.