about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorAmanieu d'Antras <amanieu@gmail.com>2020-02-14 16:54:40 +0000
committerAmanieu d'Antras <amanieu@gmail.com>2020-03-26 15:49:22 +0000
commit1cc521ef9d8a8a2eb48f0e11ddfc1e70734aff10 (patch)
tree18eb30e68fcad637f35fe20bf83326b054171a94 /src/librustc_error_codes/error_codes
parentd162d096ddf7972819e5b700890726a2ea85f272 (diff)
downloadrust-1cc521ef9d8a8a2eb48f0e11ddfc1e70734aff10.tar.gz
rust-1cc521ef9d8a8a2eb48f0e11ddfc1e70734aff10.zip
Update tests to use llvm_asm!
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0668.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0668.md b/src/librustc_error_codes/error_codes/E0668.md
index 5d7c4cda05b..3b43a1bcae9 100644
--- a/src/librustc_error_codes/error_codes/E0668.md
+++ b/src/librustc_error_codes/error_codes/E0668.md
@@ -7,7 +7,7 @@ assembly call.
 In particular, it can happen if you forgot the closing bracket of a register
 constraint (see issue #51430):
 ```compile_fail,E0668
-#![feature(asm)]
+#![feature(llvm_asm)]
 
 fn main() {
     let rax: u64;