Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

ices/66223.sh: fixed with no errors #377

Merged
merged 1 commit into from
May 22, 2020
Merged

Conversation

github-actions[bot]
Copy link
Contributor

Issue: rust-lang/rust#66223

#!/bin/bash

rustc -C opt-level=3 - << 'END'
#![feature(llvm_asm)]

unsafe fn _mm512_set1_epi64(a: i64) {
    llvm_asm! {
        "vpbroadcastq zmm0{k1}, $0"
        :: "m"(a)
        :: "intel"
    }
}

fn main() {
    unsafe { _mm512_set1_epi64(123); }
}
END
=== stdout ===
=== stderr ===
==============

=== stdout ===
=== stderr ===
==============
Copy link
Member

@JohnTitor JohnTitor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed by updating LLVM.

@JohnTitor JohnTitor merged commit e89a62d into master May 22, 2020
@JohnTitor JohnTitor deleted the autofix/ices/66223.sh branch May 22, 2020 12:12
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants