Try ignore-debug in the codegen test

This fixed things the last time I had a problem like this.  And plausibly will here too -- the check it's failing on is for the high bit being set in the length of the slice, which is a check that's only in a debug_assert.
This commit is contained in:
Scott McMurray 2021-01-16 14:52:48 -08:00
parent 132307c685
commit 6bcaba9f51

View File

@ -1,6 +1,7 @@
// no-system-llvm // no-system-llvm
// compile-flags: -O // compile-flags: -O
// only-64bit (because the LLVM type of i64 for usize shows up) // only-64bit (because the LLVM type of i64 for usize shows up)
// ignore-debug: the debug assertions get in the way
#![crate_type = "lib"] #![crate_type = "lib"]
#![feature(slice_as_chunks)] #![feature(slice_as_chunks)]