Modifying constructor for fundef structures.
(change-fundef x
[:extension <extension>]
[:specs <specs>]
[:declor <declor>]
[:asm? <asm?>]
[:attribs <attribs>]
[:declons <declons>]
[:body <body>]
[:info <info>])
This is an often useful alternative to make-fundef.
We construct a new fundef structure that is a copy of
This is an ordinary
Macro:
(defmacro change-fundef (x &rest args) (std::change-aggregate 'fundef x args '((:extension . fundef->extension) (:specs . fundef->specs) (:declor . fundef->declor) (:asm? . fundef->asm?) (:attribs . fundef->attribs) (:declons . fundef->declons) (:body . fundef->body) (:info . fundef->info)) 'change-fundef 'remake-fundef))