|
sym::prefetch_read_data |
|
| sym::prefetch_write_data |
|
| sym::prefetch_read_instruction |
|
| sym::prefetch_write_instruction => { |
|
unimplemented!(); |
|
} |
Currently, all the prefetch operations lead to unimplemented!() macro. However, prefetches are just a suggestion and can be interpreted as a noop, like assume is.
rustc_codegen_gcc/src/intrinsic/mod.rs
Lines 170 to 175 in 1a8e0c3
Currently, all the prefetch operations lead to
unimplemented!()macro. However, prefetches are just a suggestion and can be interpreted as a noop, like assume is.