diff options
| author | Levente Kurusa <lkurusa@acm.org> | 2018-09-26 08:44:19 +0200 |
|---|---|---|
| committer | Levente Kurusa <lkurusa@acm.org> | 2018-09-26 08:44:19 +0200 |
| commit | 687fdf5663f24f155f35dea5670fa9d5bc8ff738 (patch) | |
| tree | 5e5fbdfa6dab4271effbc3f1c31c08990f882db1 /src/librustc_codegen_llvm | |
| parent | 70bf90384c35056c620ad221982d346b3b92ee0a (diff) | |
| download | rust-687fdf5663f24f155f35dea5670fa9d5bc8ff738.tar.gz rust-687fdf5663f24f155f35dea5670fa9d5bc8ff738.zip | |
fixup! codegen_llvm: check inline assembly constraints with LLVM
Diffstat (limited to 'src/librustc_codegen_llvm')
| -rw-r--r-- | src/librustc_codegen_llvm/diagnostics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/diagnostics.rs b/src/librustc_codegen_llvm/diagnostics.rs index 05359f62ac0..668d602a69c 100644 --- a/src/librustc_codegen_llvm/diagnostics.rs +++ b/src/librustc_codegen_llvm/diagnostics.rs @@ -56,7 +56,7 @@ assembly call. In particular, it can happen if you forgot the closing bracket of a register constraint (see issue #51430): -``` +```compile_fail #![feature(asm)] fn main() { |
