I was reading this paper on RC6 and formally, the algorithm is defined for an arbitrary word size $w$, even though only $w=32$ was considered for the AES submission. Now the paper explicitly mentions the choice $w=24$, among others. Later on in the paper, it says:
"The base-two logarithm of $w$ will be denoted by $\operatorname{lg}w$."
As part of the encryption routine, the following step is performed: $$ t = (B\times(2B+1)) \lll \operatorname{lg} w $$ This makes perfect sense for $w=32$ as $32$ is a power of two and $\operatorname{lg} w$ will be an integer, by which you can rotate another integer. However, for $w=24$, this formally asks me to rotate the value by approximately $4.584962500721156$ bits, which I find rather puzzling.
My question is: What is the correct interpretation of $\operatorname{lg} w$ for implementations of RC6 that allow other values for $w$, specifically when $w$ is not a power of two?