23 lines
371 B
C++
23 lines
371 B
C++
// -*- C++ -*-
|
|
/**
|
|
|
|
@file include/operation/extensions/extensions.h
|
|
@brief Operation extensions main header.
|
|
|
|
Copyright (c) 2024 Christian Zimmermann. All rights reserved.
|
|
Mail: chizeta@f3l.de
|
|
|
|
**/
|
|
|
|
#ifndef __cxz_extensions_h__
|
|
#define __cxz_extensions_h__
|
|
|
|
#include "reg.h"
|
|
|
|
#if CXZ_HAVE_AVX
|
|
#include "avx.h"
|
|
#endif
|
|
|
|
#include "extensions.cc.h"
|
|
|
|
#endif
|