diff options
author | gatecat <gatecat@ds0.me> | 2021-06-02 11:56:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-02 11:56:45 +0100 |
commit | 589ca8ded5da2012e4388a3ec4c8fae74dff75e4 (patch) | |
tree | 1e837e6d0db8ae57eb0a5709d986f670f6d19533 /mistral/arch.h | |
parent | 2bef7b5f7bf2160c3918e9ab312ec96a1162cc50 (diff) | |
parent | cbedf52342ce88144e1efc69094f1dadac9b19f1 (diff) | |
download | nextpnr-589ca8ded5da2012e4388a3ec4c8fae74dff75e4.tar.gz nextpnr-589ca8ded5da2012e4388a3ec4c8fae74dff75e4.tar.bz2 nextpnr-589ca8ded5da2012e4388a3ec4c8fae74dff75e4.zip |
Merge pull request #719 from YosysHQ/gatecat/mistral-llvm
mistral: Fix nextpnr build with LLVM
Diffstat (limited to 'mistral/arch.h')
-rw-r--r-- | mistral/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mistral/arch.h b/mistral/arch.h index 83971822..ee2c84a3 100644 --- a/mistral/arch.h +++ b/mistral/arch.h @@ -289,7 +289,7 @@ struct Arch : BaseArch<ArchRanges> mistral::CycloneV *cyclonev; Arch(ArchArgs args); - ArchArgs archArgs() const { return args; } + ArchArgs archArgs() const override { return args; } std::string getChipName() const override { return args.device; } // ------------------------------------------------- |