Skip to content
Snippets Groups Projects
Commit 6886bd65 authored by Mark Palange (Mani)'s avatar Mark Palange (Mani)
Browse files

EXT-3780 FIX Re-added LL_X86 and LLX86_64 defines

parent 047f88b6
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,20 @@ ...@@ -46,6 +46,20 @@
#include "llsd.h" #include "llsd.h"
#if LL_MSVC && _M_X64
# define LL_X86_64 1
# define LL_X86 1
#elif LL_MSVC && _M_IX86
# define LL_X86 1
#elif LL_GNUC && ( defined(__amd64__) || defined(__x86_64__) )
# define LL_X86_64 1
# define LL_X86 1
#elif LL_GNUC && ( defined(__i386__) )
# define LL_X86 1
#elif LL_GNUC && ( defined(__powerpc__) || defined(__ppc__) )
# define LL_PPC 1
#endif
class LLProcessorInfoImpl; // foward declaration for the mImpl; class LLProcessorInfoImpl; // foward declaration for the mImpl;
namespace namespace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment