$OpenBSD: patch-CPP_7zip_UI_Common_Bench_cpp,v 1.1 2016/01/25 19:42:46 jasper Exp $

Unbreak build on 'mips64' where 'mips' is a CPP define.
../../../../CPP/7zip/UI/Common/Bench.cpp:2378: error: expected unqualified-id before numeric constant

--- CPP/7zip/UI/Common/Bench.cpp.orig	Mon Jan 25 11:46:00 2016
+++ CPP/7zip/UI/Common/Bench.cpp	Mon Jan 25 11:48:27 2016
@@ -2375,18 +2375,18 @@ HRESULT Bench(
       if (start == 0)
         start = 1;
       UInt64 freq = GetFreq();
-      UInt64 mips = numMilCommands * freq / start;
+      UInt64 mipsvalue = numMilCommands * freq / start;
       if (printCallback)
-        PrintNumber(*printCallback, mips, 5 + ((sum == 0xF1541213) ? 1 : 0));
+        PrintNumber(*printCallback, mipsvalue, 5 + ((sum == 0xF1541213) ? 1 : 0));
 
       /*
       if (benchCallback)
-        benchCallback->AddCpuFreq(mips);
+        benchCallback->AddCpuFreq(mipsvalue);
       */
 
       if (jj >= 3)
       {
-        SetComplexCommands(testTime, mips * 1000000, complexInCommands);
+        SetComplexCommands(testTime, mipsvalue * 1000000, complexInCommands);
         if (jj >= 8 || start >= freq)
           break;
         // break; // change it
