Deduplicate and clean up pretty printing logic
This commit is contained in:
parent
1581278534
commit
02dbb35b2b
12 changed files with 287 additions and 148 deletions
|
|
@ -14,7 +14,7 @@ fn main() {}
|
|||
// START rustc.FOO.PromoteTemps.before.mir
|
||||
// bb0: {
|
||||
// ...
|
||||
// _5 = const Scalar(alloc1+0) : &i32;
|
||||
// _5 = const {alloc1+0: &i32};
|
||||
// _4 = &(*_5);
|
||||
// _3 = [move _4];
|
||||
// _2 = &_3;
|
||||
|
|
@ -31,7 +31,7 @@ fn main() {}
|
|||
// START rustc.BAR.PromoteTemps.before.mir
|
||||
// bb0: {
|
||||
// ...
|
||||
// _5 = const Scalar(alloc0+0) : &i32;
|
||||
// _5 = const {alloc0+0: &i32};
|
||||
// _4 = &(*_5);
|
||||
// _3 = [move _4];
|
||||
// _2 = &_3;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ fn main() {
|
|||
// START rustc.main.ConstProp.after.mir
|
||||
// bb0: {
|
||||
// ...
|
||||
// _3 = const Scalar(0x01) : std::option::Option<bool>;
|
||||
// _3 = const {0x01: std::option::Option<bool>};
|
||||
// _4 = const 1isize;
|
||||
// switchInt(const 1isize) -> [1isize: bb2, otherwise: bb1];
|
||||
// }
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ fn main() {
|
|||
// START rustc.main.ConstProp.after.mir
|
||||
// bb0: {
|
||||
// ...
|
||||
// _3 = const Scalar(<ZST>) : ();
|
||||
// _3 = const ();
|
||||
// _2 = (move _3, const 0u8, const 0u8);
|
||||
// ...
|
||||
// _1 = const encode(move _2) -> bb1;
|
||||
|
|
|
|||
|
|
@ -10,10 +10,10 @@ fn main() {
|
|||
// START rustc.main.ConstProp.before.mir
|
||||
// bb0: {
|
||||
// ...
|
||||
// _3 = const Scalar(alloc0+0) : &u8;
|
||||
// _3 = const {alloc0+0: &u8};
|
||||
// _2 = (*_3);
|
||||
// ...
|
||||
// _5 = const Scalar(alloc0+0) : &u8;
|
||||
// _5 = const {alloc0+0: &u8};
|
||||
// _4 = (*_5);
|
||||
// _1 = Add(move _2, move _4);
|
||||
// ...
|
||||
|
|
|
|||
|
|
@ -35,28 +35,28 @@ fn main() {
|
|||
// bb0: {
|
||||
// StorageLive(_1);
|
||||
// StorageLive(_2);
|
||||
// _2 = const Scalar(<ZST>) : ();
|
||||
// _2 = const ();
|
||||
// StorageLive(_3);
|
||||
// _3 = const Scalar(<ZST>) : ();
|
||||
// _1 = const Scalar(<ZST>) : ((), ());
|
||||
// _3 = const ();
|
||||
// _1 = const ((), ());
|
||||
// StorageDead(_3);
|
||||
// StorageDead(_2);
|
||||
// StorageDead(_1);
|
||||
// StorageLive(_4);
|
||||
// StorageLive(_6);
|
||||
// _6 = const Scalar(<ZST>) : ();
|
||||
// _6 = const ();
|
||||
// StorageLive(_7);
|
||||
// _7 = const Scalar(<ZST>) : ();
|
||||
// _7 = const ();
|
||||
// StorageDead(_7);
|
||||
// StorageDead(_6);
|
||||
// _4 = const use_zst(const Scalar(<ZST>) : ((), ())) -> bb1;
|
||||
// _4 = const use_zst(const ((), ())) -> bb1;
|
||||
// }
|
||||
// bb1: {
|
||||
// StorageDead(_4);
|
||||
// StorageLive(_8);
|
||||
// StorageLive(_10);
|
||||
// StorageLive(_11);
|
||||
// _11 = const Scalar(0x28) : Temp;
|
||||
// _11 = const {0x28 : Temp};
|
||||
// _10 = const 40u8;
|
||||
// StorageDead(_10);
|
||||
// _8 = const use_u8(const 42u8) -> bb2;
|
||||
|
|
@ -75,7 +75,7 @@ fn main() {
|
|||
// }
|
||||
// bb0: {
|
||||
// StorageLive(_1);
|
||||
// _1 = const use_zst(const Scalar(<ZST>) : ((), ())) -> bb1;
|
||||
// _1 = const use_zst(const ((), ())) -> bb1;
|
||||
// }
|
||||
// bb1: {
|
||||
// StorageDead(_1);
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// normalize-stderr-64bit "0x00000000" -> "0x[PREFIX]"
|
||||
// normalize-stderr-32bit "0x" -> "0x[PREFIX]"
|
||||
|
||||
#![feature(const_generics, const_compare_raw_pointers)]
|
||||
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
warning: the feature `const_generics` is incomplete and may cause the compiler to crash
|
||||
--> $DIR/raw-ptr-const-param.rs:1:12
|
||||
--> $DIR/raw-ptr-const-param.rs:4:12
|
||||
|
|
||||
LL | #![feature(const_generics, const_compare_raw_pointers)]
|
||||
| ^^^^^^^^^^^^^^
|
||||
|
|
@ -7,15 +7,15 @@ LL | #![feature(const_generics, const_compare_raw_pointers)]
|
|||
= note: `#[warn(incomplete_features)]` on by default
|
||||
|
||||
error[E0308]: mismatched types
|
||||
--> $DIR/raw-ptr-const-param.rs:7:38
|
||||
--> $DIR/raw-ptr-const-param.rs:10:38
|
||||
|
|
||||
LL | let _: Const<{15 as *const _}> = Const::<{10 as *const _}>;
|
||||
| ----------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^ expected `{pointer}`, found `{pointer}`
|
||||
| ----------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^ expected `0x[PREFIX]0000000f`, found `0x[PREFIX]0000000a`
|
||||
| |
|
||||
| expected due to this
|
||||
|
|
||||
= note: expected struct `Const<{pointer}>`
|
||||
found struct `Const<{pointer}>`
|
||||
= note: expected struct `Const<0x[PREFIX]0000000f>`
|
||||
found struct `Const<0x[PREFIX]0000000a>`
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ error: any use of this value will cause an error
|
|||
LL | intrinsics::ptr_offset_from(self, origin)
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
| |
|
||||
| exact_div: 1 cannot be divided by 2 without remainder
|
||||
| exact_div: 1isize cannot be divided by 2isize without remainder
|
||||
| inside call to `std::ptr::const_ptr::<impl *const u16>::offset_from` at $DIR/offset_from_ub.rs:36:14
|
||||
|
|
||||
::: $DIR/offset_from_ub.rs:31:1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue