1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/other-licenses/7zstub/src/7zip/Compress/Branch/x86.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +// x86.h 1.5 + 1.6 +#ifndef __X86_H 1.7 +#define __X86_H 1.8 + 1.9 +#include "BranchCoder.h" 1.10 +#include "BranchX86.h" 1.11 + 1.12 +struct CBranch86 1.13 +{ 1.14 + UInt32 _prevMask; 1.15 + UInt32 _prevPos; 1.16 + void x86Init() { x86_Convert_Init(_prevMask, _prevPos); } 1.17 +}; 1.18 + 1.19 +MyClassB(BCJ_x86, 0x01, 3, CBranch86 , 1.20 + virtual void SubInit() { x86Init(); }) 1.21 + 1.22 +#endif