about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/messages.ftl
AgeCommit message (Collapse)AuthorLines
2023-07-21support non-null pointer niches in CTFEMoulins-1/+0
2023-07-16miri: fail when calling a function that requires an unavailable target featureEduardo Sánchez Muñoz-0/+3
miri will report an UB when calling a function that has a `#[target_feature(enable = ...)]` attribute is called and the required feature is not available. "Available features" are the same that `is_x86_feature_detected!` (or equivalent) reports to be available during miri execution (which can be enabled or disabled with the `-C target-feature` flag).
2023-06-18Better error for non const `PartialEq` call generated by `match`Deadbeef-0/+3
2023-06-01Use translatable diagnostics in `rustc_const_eval`Deadbeef-17/+374
2023-05-31Remove const eval limit and implement an exponential backoff lint insteadOli Scherer-0/+6
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-46/+46
2023-03-29Check for escape sequences in Fluent resourcesclubby789-4/+12
2023-03-11Simplify message pathsest31-0/+83
This makes it easier to open the messages file while developing on features. The commit was the result of automatted changes: for p in compiler/rustc_*; do mv $p/locales/en-US.ftl $p/messages.ftl; rmdir $p/locales; done for p in compiler/rustc_*; do sed -i "s#\.\./locales/en-US.ftl#../messages.ftl#" $p/src/lib.rs; done