diff --git a/orc-rt/unittests/EndianTest.cpp b/orc-rt/unittests/EndianTest.cpp index 74dc6ef620bc..018f70d0ecd4 100644 --- a/orc-rt/unittests/EndianTest.cpp +++ b/orc-rt/unittests/EndianTest.cpp @@ -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); } }