We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6de277c commit 18bbf5fCopy full SHA for 18bbf5f
compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp
@@ -490,8 +490,8 @@ extern "C" LLVMTargetMachineRef LLVMRustCreateTargetMachine(
490
assert(ArgsCstrBuff[ArgsCstrBuffLen - 1] == '\0');
491
auto Arg0 = std::string(ArgsCstrBuff);
492
buffer_offset = Arg0.size() + 1;
493
- auto ArgsCppStr =
494
- std::string(ArgsCstrBuff + buffer_offset, ArgsCstrBuffLen - buffer_offset);
+ auto ArgsCppStr = std::string(ArgsCstrBuff + buffer_offset,
+ ArgsCstrBuffLen - buffer_offset);
495
auto i = 0;
496
while (i != std::string::npos) {
497
i = ArgsCppStr.find('\0', i + 1);
0 commit comments