<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/100944>100944</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            [clang-format] Odd formatting around multiline string parameter
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            clang-format
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          boomanaiden154
      </td>
    </tr>
</table>

<pre>
    Take the following snippet:
```c++
TEST_F(ProcessFilterBBsTest, RemoveSyscall) {
  auto ProcessedInstructions = processAndFilter(R"asm(
    movq %r11, %r12
    syscall
  )asm", false);

  EXPECT_EQ(ProcessedInstructions.size(), 1);
 EXPECT_EQ(ProcessedInstructions[0].mc_inst.getOpcode(), X86::MOV64rr);
}
```

Running clang-format over this (v18 and ToT 44df89cc30fc462dcb821929c6d5459688ffe545) produces the following:
```c++
TEST_F(ProcessFilterBBsTest, RemoveSyscall) {
 auto ProcessedInstructions = processAndFilter(R"asm(
    movq %r11, %r12
    syscall
  )asm",
 false);

  EXPECT_EQ(ProcessedInstructions.size(), 1);
 EXPECT_EQ(ProcessedInstructions[0].mc_inst.getOpcode(), X86::MOV64rr);
}
```

I would not expect the boolean value to be a line below and indented very to the right.
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzcVMFu4zYQ_RrqMoghjURJPOgQr2NgD0W2WaPYW0CRY5stRaok5TT9-oKKg8S99FQUKEBA0nDemxm-J8oYzckRDYxvGd8VcklnH4bR-0k6aTS5ijfF6PXrcJC_EaQzwdFb61-MO0F0Zp4psfqelTtW3rO2fFuK4TavNXp4-H543jPsvwWvKMa9sYnCdhsPFBPDL_BEk7_Q99eopLUMBbDuCgWQS_JwBZL-6mIKi0rGuwis3sH8tnPv9Bsrw_6JIco4MezfOQAmf_kdGPJQVbng-oYf2_Fa-hpgKFYCzLlHaSMxFKy-9vSe9fDj28OXw_PDzx-T3Ta4ieZPym2gyETVZ5J_RjO-LRnfbSb1bFxMmxOlx1l5_YnxR9_mo6_vf3r8pW1CuOmy2_1Nk8_dPy3OZQGVle50d_Rhkgn8hQKks4nAsL9UPUin4eAP0DT62Aul6vKomha1GnusBArVat5w0fb98Ui84Vm6OXi9KIq3TvkXHfJfG-Qa-1_a5Cu8-MVqcD4B_TGTSquso_eWpIOLtAtB8jASSLDGEYxk_ctqHOM0uUQaLhRec1JGBnM6p02hh1qLWsiChqpDrETDa16ch17UWmhSFY4jL3VXVqhbrLAZO9GWNBZmwBKbssO-EogV3xy7vqvarhKiVzUpyZqSJmnsxtrLtPHhVJgYFxqqshRNU1g5ko3rZYf42fxZS74rwpBxd-NyiqwprYkpfjAlk-x6Ud4A-Q4etYa3r5R_Khn84jRMi01mPZSYQo7PMsiJEoViCXY4pzTHrAvuGe5PJp2XcaP8xHCfK14fd3Pwv5JKDPfrIJHh_jrLZcC_AgAA__9JHLsc">