Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2016-04-17 15:41:47 +0300
committerKacper Michajłow <kasper93@gmail.com>2016-04-17 22:07:45 +0300
commit7797ce653d2ed3981e0f4dafd27f22ae66fa1ab4 (patch)
tree138d891f4292c67778b791c1c7a10e12d348bafd
parent5677df75c7a60f0dad9c59c58f9a4ac2349ccdaa (diff)
CAboutDlg: Add AVX2 detection.
-rw-r--r--src/mpc-hc/AboutDlg.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mpc-hc/AboutDlg.cpp b/src/mpc-hc/AboutDlg.cpp
index d6fc6ad0c..bc23fbe70 100644
--- a/src/mpc-hc/AboutDlg.cpp
+++ b/src/mpc-hc/AboutDlg.cpp
@@ -109,7 +109,9 @@ BOOL CAboutDlg::OnInitDialog()
#error Please add support for your compiler
#endif
-#if (__AVX__)
+#if (__AVX2__)
+ m_MPCCompiler += _T(" (AVX2)");
+#elif (__AVX__)
m_MPCCompiler += _T(" (AVX)");
#elif (__SSSE3__)
m_MPCCompiler += _T(" (SSSE3)");