2025-01-05 15:32:20 +03:00
|
|
|
//@ revisions: good_val bad_val no_val
|
|
|
|
|
//
|
|
|
|
|
//@[good_val] compile-flags: -Cinline-threshold=666
|
|
|
|
|
//@[good_val] check-pass
|
|
|
|
|
//@[bad_val] compile-flags: -Cinline-threshold=asd
|
|
|
|
|
//@[no_val] compile-flags: -Cinline-threshold
|
2024-05-04 16:21:50 +02:00
|
|
|
|
|
|
|
|
fn main() {}
|
2025-03-23 15:50:51 +03:00
|
|
|
|
|
|
|
|
//[good_val]~? WARN `-C inline-threshold`: this option is deprecated and does nothing
|
|
|
|
|
//[bad_val]~? WARN `-C inline-threshold`: this option is deprecated and does nothing
|
|
|
|
|
//[bad_val]~? ERROR incorrect value `asd` for codegen option `inline-threshold`
|
|
|
|
|
//[no_val]~? WARN `-C inline-threshold`: this option is deprecated and does nothing
|
|
|
|
|
//[no_val]~? ERROR codegen option `inline-threshold` requires a number
|