about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-05-21 00:47:02 +0200
committerGitHub <noreply@github.com>2024-05-21 00:47:02 +0200
commit4b26045b92c498f1b22aeb353fb76df859262f09 (patch)
treefd6efa5465e593fbb7708a57dab6472a1862c4a5 /compiler/rustc_codegen_llvm/src
parent62da957c92b28771337f99b6869ac3d1201681c4 (diff)
parent7b1527ff5f7adb2de57a9a925e578ffd3b25ed23 (diff)
downloadrust-4b26045b92c498f1b22aeb353fb76df859262f09.tar.gz
rust-4b26045b92c498f1b22aeb353fb76df859262f09.zip
Rollup merge of #125158 - Nilstrieb:block-indent, r=compiler-errors
hir pretty: fix block indent

before:
```rust
fn main() {
        {
                {
                        ::std::io::_print(format_arguments::new_const(&["Hello, world!\n"]));
                    };
            }
    }
```
after:
```rust
fn main() {
    {
        {
            ::std::io::_print(format_arguments::new_const(&["Hello, world!\n"]));
        };
    }
}
```

AST pretty does the same.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
0 files changed, 0 insertions, 0 deletions