diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-07 12:34:59 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-07 12:34:59 -0600 |
commit | 79866eaaf708759db9458e60bb4ea51799608f2e (patch) | |
tree | bef9c09203e519c33b83b859cdce87f1019c14fa /include/chillAST/chillAST_def.hh | |
parent | 7414769da6aaff79887b5ba53406f442df9da33f (diff) | |
download | chill-79866eaaf708759db9458e60bb4ea51799608f2e.tar.gz chill-79866eaaf708759db9458e60bb4ea51799608f2e.tar.bz2 chill-79866eaaf708759db9458e60bb4ea51799608f2e.zip |
fix unroll & cleanup
Diffstat (limited to 'include/chillAST/chillAST_def.hh')
-rw-r--r-- | include/chillAST/chillAST_def.hh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/chillAST/chillAST_def.hh b/include/chillAST/chillAST_def.hh index acdce08..7a9528e 100644 --- a/include/chillAST/chillAST_def.hh +++ b/include/chillAST/chillAST_def.hh @@ -87,6 +87,7 @@ enum CHILLAST_PREPROCESSING_POSITION { // when tied to another statement CHILLAST_PREPROCESSING_IMMEDIATELYBEFORE // on same line }; +//! Parse to the most basic type char *parseUnderlyingType(const char *sometype); char *parseArrayParts(char *sometype); @@ -95,7 +96,10 @@ bool isRestrict(const char *sometype); char *splitTypeInfo(char *underlyingtype); -//! change "1024UL" to "1024" +//! remove UL from numbers, MODIFIES the argument! +/*! + * change "1024UL" to "1024" + */ char *ulhack(char *brackets); //! remove __restrict__ , MODIFIES the argument! |