[llvm-dev] Commit 93af05e03e05d2f85b5a7e20ec3a3a543584d84f causes warning

Lang Hames via llvm-dev llvm-dev at lists.llvm.org
Fri May 31 12:40:36 PDT 2019


Hi Denis,

It is unfortunate that GCC has added such an aggressive warning with no way
to disable it. I would definitely make a comment on their bug tracker that
you have hit this.

We could work around this by changing the field type to uint8_t and adding
casts, but I'm not sure whether we want to work around warnings in other
compilers as a matter of policy.

Anyone else have thoughts on style here?

Cheers,
Lang.

On Fri, May 31, 2019 at 10:54 AM Bakhvalov, Denis <denis.bakhvalov at intel.com>
wrote:

> Hello,
>
> After commit 93af05e03e05d2f85b5a7e20ec3a3a543584d84f we have new warning
> but only if compiled with GCC:
>
> In file included from
> /path/to/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h:19:0,
>
>                  from
> /path/to/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h:23,
>
>                  from
> /path/to/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp:9:
>
> /path/to/llvm/include/llvm/ExecutionEngine/Orc/Core.h:690:25: warning:
> ‘llvm::orc::JITDylib::SymbolTableEntry::State’ is too small to hold all
> values of ‘enum class llvm::orc::JITDylib::SymbolState’
>
>      SymbolState State : 6;
>
>
>
> There is no GCC option for disabling this warning:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61414
>
> The issue is that now LLVM is not buildable with GCC and ‘-Werror’ enabled.
>
>
>
> In addition, LLVM gcc-werror buildbot seems to be offline since May 9th:
> http://lab.llvm.org:8011/builders/ubuntu-gcc7.1-werror
>
>
>
> I understand that changing the code to satisfy GCC requirements might not
> be desired, but I think this is something that we should do.
>
>
>
> Best regards,
> Denis Bakhvalov.
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190531/3a2360e3/attachment.html>


More information about the llvm-dev mailing list