[orc-rt] Update another unittest to use orc-rt/bit.h functions. (#177303)
Unit test was mistakenly using an `llvm::` function. Thanks to @jaredwy for spotting this!
This commit is contained in:
@@ -60,7 +60,7 @@ void forAllRotatedValues(Op O, T InitialValue) {
|
||||
T V = InitialValue;
|
||||
for (size_t I = 0; I != CHAR_BIT * sizeof(T); ++I) {
|
||||
O(V);
|
||||
V = llvm::rotl(V, 1);
|
||||
V = orc_rt::rotl(V, 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user