2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
//@ ignore-emscripten apparently only works in optimized mode
|
2018-03-16 11:42:42 -07:00
|
|
|
|
2016-08-23 09:07:23 +03:00
|
|
|
const TEST_DATA: [u8; 32 * 1024 * 1024] = [42; 32 * 1024 * 1024];
|
|
|
|
|
|
|
|
// Check that the promoted copy of TEST_DATA doesn't
|
|
|
|
// leave an alloca from an unused temp behind, which,
|
|
|
|
// without optimizations, can still blow the stack.
|
|
|
|
fn main() {
|
|
|
|
println!("{}", TEST_DATA.len());
|
|
|
|
}
|