blob: 607719a19d6637bba4ad176a1dcf705f155cc792 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#compdef objdump
# borrowed from _nm_object_file
_objdump_object_file() {
[[ -x $REPLY || $REPLY = *.([ao]|so|elf) ]]
}
_arguments -- '*:object file:_files -g "*(-.e,_objdump_object_file,)"'
|