diff options
author | Josh Blum <josh@joshknows.com> | 2011-02-03 18:51:42 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-02-03 18:51:42 -0800 |
commit | d6c52af6a8ac2e2a85942116768cf69971aac48a (patch) | |
tree | 58f90b7da55eda0317ac1343ad7878c9adfdc631 /host/lib/convert/gen_convert_general.py | |
parent | 5d459d1cb09cdce0c1fd4d7e7d0259310921b94f (diff) | |
parent | 43b19815fec253dc7e5538329f9fe1363f007b8a (diff) | |
download | uhd-d6c52af6a8ac2e2a85942116768cf69971aac48a.tar.gz uhd-d6c52af6a8ac2e2a85942116768cf69971aac48a.tar.bz2 uhd-d6c52af6a8ac2e2a85942116768cf69971aac48a.zip |
Merge branch 'convert_fc64'
Diffstat (limited to 'host/lib/convert/gen_convert_general.py')
-rw-r--r-- | host/lib/convert/gen_convert_general.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/convert/gen_convert_general.py b/host/lib/convert/gen_convert_general.py index 47c4cd7d0..f03448047 100644 --- a/host/lib/convert/gen_convert_general.py +++ b/host/lib/convert/gen_convert_general.py @@ -85,7 +85,7 @@ if __name__ == '__main__': output = parse_tmpl(TMPL_HEADER, file=file) for width in 1, 2, 3, 4: for swap, swap_fcn in (('nswap', ''), ('bswap', 'uhd::byteswap')): - for cpu_type in 'fc32', 'sc16': + for cpu_type in 'fc64', 'fc32', 'sc16': output += parse_tmpl( TMPL_CONV_TO_FROM_ITEM32_1 if width == 1 else TMPL_CONV_TO_FROM_ITEM32_X, width=width, swap=swap, swap_fcn=swap_fcn, cpu_type=cpu_type |