diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-07-25 01:05:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-25 01:05:00 +0200 |
| commit | b1a866012def324a47408d9130ea6c25cc5d0fc8 (patch) | |
| tree | 81d9539132433fe87a3d154d7cc6f0923be090b3 /src/librustc_codegen_llvm | |
| parent | 8d9000d38ca359cf7cb13cc456745897a87516ce (diff) | |
| parent | 4b339688b5b49e38545336b27845b7d1e31a5b80 (diff) | |
| download | rust-b1a866012def324a47408d9130ea6c25cc5d0fc8.tar.gz rust-b1a866012def324a47408d9130ea6c25cc5d0fc8.zip | |
Rollup merge of #62814 - androm3da:hexagon_19jul_2019, r=alexcrichton
add support for hexagon-unknown-linux-musl
Diffstat (limited to 'src/librustc_codegen_llvm')
| -rw-r--r-- | src/librustc_codegen_llvm/llvm_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/llvm_util.rs b/src/librustc_codegen_llvm/llvm_util.rs index 274c8965962..541d3d98b79 100644 --- a/src/librustc_codegen_llvm/llvm_util.rs +++ b/src/librustc_codegen_llvm/llvm_util.rs @@ -174,7 +174,7 @@ const X86_WHITELIST: &[(&str, Option<Symbol>)] = &[ const HEXAGON_WHITELIST: &[(&str, Option<Symbol>)] = &[ ("hvx", Some(sym::hexagon_target_feature)), - ("hvx-double", Some(sym::hexagon_target_feature)), + ("hvx-length128b", Some(sym::hexagon_target_feature)), ]; const POWERPC_WHITELIST: &[(&str, Option<Symbol>)] = &[ |
