diff options
Diffstat (limited to 'module/scripts/disassemble.scm')
-rw-r--r-- | module/scripts/disassemble.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/scripts/disassemble.scm b/module/scripts/disassemble.scm index 8907f6d08..7dab2dde9 100644 --- a/module/scripts/disassemble.scm +++ b/module/scripts/disassemble.scm @@ -1,6 +1,6 @@ ;;; Disassemble --- Disassemble .go files into something human-readable -;; Copyright 2005, 2008, 2009 Free Software Foundation, Inc. +;; Copyright 2005, 2008, 2009, 2011 Free Software Foundation, Inc. ;; ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public License @@ -32,6 +32,8 @@ #:renamer (symbol-prefix-proc 'asm:)) #:export (disassemble)) +(define %summary "Disassemble a compiled .go file.") + (define (disassemble . files) (for-each (lambda (file) (asm:disassemble (load-objcode file))) |