Rename `tests/assembly` into `tests/assembly-llvm`
diff --git a/src/asm.md b/src/asm.md
index eec9d44..3d93d5a 100644
--- a/src/asm.md
+++ b/src/asm.md
@@ -155,9 +155,9 @@
Various tests for inline assembly are available:
-- `tests/assembly/asm`
+- `tests/assembly-llvm/asm`
- `tests/ui/asm`
- `tests/codegen/asm-*`
Every architecture supported by inline assembly must have exhaustive tests in
-`tests/assembly/asm` which test all combinations of register classes and types.
+`tests/assembly-llvm/asm` which test all combinations of register classes and types.
diff --git a/src/tests/compiletest.md b/src/tests/compiletest.md
index aa99347..6a60e71 100644
--- a/src/tests/compiletest.md
+++ b/src/tests/compiletest.md
@@ -307,7 +307,7 @@
### Assembly tests
-The tests in [`tests/assembly`] test LLVM assembly output. They compile the test
+The tests in [`tests/assembly-llvm`] test LLVM assembly output. They compile the test
with the `--emit=asm` flag to emit a `.s` file with the assembly output. They
then run the LLVM [FileCheck] tool.
@@ -324,7 +324,7 @@
If you need to work with `#![no_std]` cross-compiling tests, consult the
[`minicore` test auxiliary](./minicore.md) chapter.
-[`tests/assembly`]: https://github.com/rust-lang/rust/tree/master/tests/assembly
+[`tests/assembly-llvm`]: https://github.com/rust-lang/rust/tree/master/tests/assembly-llvm
### Codegen-units tests