X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdePkg%2FInclude%2FBase.h;fp=MdePkg%2FInclude%2FBase.h;h=d6b04baeaf8ba8447eb70969e9b937cde642cbd3;hp=bc877d8125a5a63de187ca7e5b772be00ed055d9;hb=7423ba9d499bb0049c5aa327abf6da888dcaba56;hpb=300b8c5f150c26375cc4e721ffe4dc84473452c7 diff --git a/MdePkg/Include/Base.h b/MdePkg/Include/Base.h index bc877d8125..d6b04baeaf 100644 --- a/MdePkg/Include/Base.h +++ b/MdePkg/Include/Base.h @@ -112,11 +112,10 @@ VERIFY_SIZE_OF (__VERIFY_UINT32_ENUM_SIZE, 4); // warnings. // #ifndef UNREACHABLE - #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 4) + #ifdef __GNUC__ /// /// Signal compilers and analyzers that this call is not reachable. It is /// up to the compiler to remove any code past that point. - /// Not implemented by GCC 4.4 or earlier. /// #define UNREACHABLE() __builtin_unreachable () #elif defined (__has_feature)