diff options
| author | yujiri8 <yujiri@disroot.org> | 2022-12-16 22:24:58 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-17 00:24:58 +0200 |
| commit | 68d2f68ed823984a59724e256e78c5654d55b088 (patch) | |
| tree | bc407334939073aaa1a7b095314fcbe458c76356 /src/codegen/llvm.zig | |
| parent | 8da9cc85af8d8f587b12e2d1ee275f50bf83b224 (diff) | |
| download | zig-68d2f68ed823984a59724e256e78c5654d55b088.tar.gz zig-68d2f68ed823984a59724e256e78c5654d55b088.zip | |
zig fmt: fix extra whitespace with multiline strings
Fixes #13937
Diffstat (limited to 'src/codegen/llvm.zig')
| -rw-r--r-- | src/codegen/llvm.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig index cccc0ff85c..cd9ef98e44 100644 --- a/src/codegen/llvm.zig +++ b/src/codegen/llvm.zig @@ -9948,7 +9948,7 @@ pub const FuncGen = struct { constraints: [:0]const u8, } = switch (target.cpu.arch) { .x86 => .{ - .template = + .template = \\roll $$3, %edi ; roll $$13, %edi \\roll $$61, %edi ; roll $$51, %edi \\xchgl %ebx,%ebx @@ -9956,7 +9956,7 @@ pub const FuncGen = struct { .constraints = "={edx},{eax},0,~{cc},~{memory}", }, .x86_64 => .{ - .template = + .template = \\rolq $$3, %rdi ; rolq $$13, %rdi \\rolq $$61, %rdi ; rolq $$51, %rdi \\xchgq %rbx,%rbx @@ -9964,7 +9964,7 @@ pub const FuncGen = struct { .constraints = "={rdx},{rax},0,~{cc},~{memory}", }, .aarch64, .aarch64_32, .aarch64_be => .{ - .template = + .template = \\ror x12, x12, #3 ; ror x12, x12, #13 \\ror x12, x12, #51 ; ror x12, x12, #61 \\orr x10, x10, x10 |
