Fixes an UB caught by sanitizer. The shift amount might be larger than 32 so the operand should be 1ULL.
In this patch, we replace the original expression with existing API with uint64_t type.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM