diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2023-12-02 20:29:47 +0000 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2023-12-02 20:29:47 +0000 |
| commit | 6086dd676686c196d26d2a760c653f83fda91e1e (patch) | |
| tree | 08ae684096b3b0817d438a1d93931e1d77dcc424 | |
| parent | bf5d114da8a376ee71ea68a6d7f9a5c2e6c4d302 (diff) | |
| download | rust-6086dd676686c196d26d2a760c653f83fda91e1e.tar.gz rust-6086dd676686c196d26d2a760c653f83fda91e1e.zip | |
FileCheck indirect.
| -rw-r--r-- | tests/mir-opt/const_prop/indirect.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/mir-opt/const_prop/indirect.rs b/tests/mir-opt/const_prop/indirect.rs index 0e6e1d78d1e..d3c42e3eb0b 100644 --- a/tests/mir-opt/const_prop/indirect.rs +++ b/tests/mir-opt/const_prop/indirect.rs @@ -1,9 +1,11 @@ -// skip-filecheck // EMIT_MIR_FOR_EACH_PANIC_STRATEGY // unit-test: ConstProp // compile-flags: -C overflow-checks=on // EMIT_MIR indirect.main.ConstProp.diff fn main() { + // CHECK-LABEL: fn main( + // CHECK: debug x => [[x:_.*]]; + // CHECK: [[x]] = const 3_u8; let x = (2u32 as u8) + 1; } |
