@@ -68,7 +68,7 @@ The following test suites are available, with links for more information:
6868| [ ` pretty ` ] ( #pretty-printer-tests ) | Check pretty printing |
6969| [ ` incremental ` ] ( #incremental-tests ) | Check incremental compilation behavior |
7070| [ ` debuginfo ` ] ( #debuginfo-tests ) | Check debuginfo generation running debuggers |
71- | [ ` codegen ` ] ( #codegen-tests ) | Check code generation |
71+ | [ ` codegen-* ` ] ( #codegen-tests ) | Check code generation |
7272| [ ` codegen-units ` ] ( #codegen-units-tests ) | Check codegen unit partitioning |
7373| [ ` assembly ` ] ( #assembly-tests ) | Check assembly output |
7474| [ ` mir-opt ` ] ( #mir-opt-tests ) | Check MIR generation and optimizations |
@@ -290,7 +290,7 @@ For example, `./x test tests/debuginfo -- --debugger gdb` will only test GDB com
290290
291291### Codegen tests
292292
293- The tests in [ ` tests/codegen ` ] test LLVM code generation. They compile the test
293+ The tests in [ ` tests/codegen-llvm ` ] test LLVM code generation. They compile the test
294294with the ` --emit=llvm-ir ` flag to emit LLVM IR. They then run the LLVM
295295[ FileCheck] tool. The test is annotated with various ` // CHECK ` comments to
296296check the generated code. See the [ FileCheck] documentation for a tutorial and
@@ -301,13 +301,13 @@ See also the [assembly tests](#assembly-tests) for a similar set of tests.
301301If you need to work with ` #![no_std] ` cross-compiling tests, consult the
302302[ ` minicore ` test auxiliary] ( ./minicore.md ) chapter.
303303
304- [ `tests/codegen` ] : https://github.com/rust-lang/rust/tree/master/tests/codegen
304+ [ `tests/codegen-llvm ` ] : https://github.com/rust-lang/rust/tree/master/tests/codegen-llvm
305305[ FileCheck ] : https://llvm.org/docs/CommandGuide/FileCheck.html
306306
307307
308308### Assembly tests
309309
310- The tests in [ ` tests/assembly ` ] test LLVM assembly output. They compile the test
310+ The tests in [ ` tests/assembly-llvm ` ] test LLVM assembly output. They compile the test
311311with the ` --emit=asm ` flag to emit a ` .s ` file with the assembly output. They
312312then run the LLVM [ FileCheck] tool.
313313
@@ -324,7 +324,7 @@ See also the [codegen tests](#codegen-tests) for a similar set of tests.
324324If you need to work with ` #![no_std] ` cross-compiling tests, consult the
325325[ ` minicore ` test auxiliary] ( ./minicore.md ) chapter.
326326
327- [ `tests/assembly` ] : https://github.com/rust-lang/rust/tree/master/tests/assembly
327+ [ `tests/assembly-llvm ` ] : https://github.com/rust-lang/rust/tree/master/tests/assembly-llvm
328328
329329
330330### Codegen-units tests
0 commit comments