diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-04-28 12:44:24 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-04-28 15:34:52 -0700 |
commit | bff6013d469b3d4e54cdc5731801c56994a523ec (patch) | |
tree | cfbd67f0ab174146df188d4e7563dafbe0084fc8 /ir.h | |
parent | 0d605cb97c9cd2f9a170e3aa15bdf4021a75fc14 (diff) |
Factor out parameter list replacement for later reuse.
Diffstat (limited to 'ir.h')
-rw-r--r-- | ir.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -214,6 +214,13 @@ public: const char *qualifiers_match(exec_list *params); /** + * Replace the current parameter list with the given one. This is useful + * if the current information came from a prototype, and either has invalid + * or missing parameter names. + */ + void replace_parameters(exec_list *new_params); + + /** * Function return type. * * \note This discards the optional precision qualifier. |