diff options
author | Aaron Watry <awatry@gmail.com> | 2013-03-23 12:35:27 -0500 |
---|---|---|
committer | Aaron Watry <awatry@gmail.com> | 2013-03-23 12:35:27 -0500 |
commit | 6ef0b7b0b6d2e5584086b4b9a9243743b2e0538f (patch) | |
tree | 4f241fb060751ab4d3932b743dd79a3aa7942154 /generic/include/clc/clc.h | |
parent | f0309e286c796ea5c5c90dff16e06a84454e9928 (diff) |
libclc: Add stub clz builtin
For scalar int/uint, attempt to use the clz llvm builtin.. for all others
return 0 until an actual implementation is finished.
Diffstat (limited to 'generic/include/clc/clc.h')
-rw-r--r-- | generic/include/clc/clc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/include/clc/clc.h b/generic/include/clc/clc.h index 72f518a..0d7f105 100644 --- a/generic/include/clc/clc.h +++ b/generic/include/clc/clc.h @@ -63,6 +63,7 @@ #include <clc/integer/abs.h> #include <clc/integer/abs_diff.h> #include <clc/integer/add_sat.h> +#include <clc/integer/clz.h> #include <clc/integer/rotate.h> #include <clc/integer/sub_sat.h> |