[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:
Lang Hames
2026-01-22 15:02:02 +11:00
committed by GitHub
parent d7d4786482
commit e838f27e0f

View File

@@ -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);
}
}