mirror of
https://github.com/intel/llvm.git
synced 2026-01-20 10:58:11 +08:00
Add a TODO note.
Patch by: Aaron Watry llvm-svn: 184998
This commit is contained in:
@@ -21,6 +21,10 @@ _CLC_OVERLOAD _CLC_DEF GENTYPE rotate(GENTYPE x, GENTYPE n){
|
||||
return ( (((UGENTYPE)x) >> -n) | (x << (GENSIZE + n)) );
|
||||
}
|
||||
#else
|
||||
//XXX: There's a lot of __builtin_astype calls to cast everything to
|
||||
// unsigned ... This should be improved so that if GENTYPE==UGENTYPE, no
|
||||
// casts are required.
|
||||
|
||||
UGENTYPE x_1 = __builtin_astype(x, UGENTYPE);
|
||||
|
||||
UGENTYPE amt;
|
||||
|
||||
Reference in New Issue
Block a user