Comment # 8 on bug 1224402 from Martin Jambor
GCC 7 deduces that the loop cannot complete its first iteration
because then it would read past the __nv_patches array if it did.  So
it puts its __builtin_unreachable after the call to proc_create_data
because if it did not return, it would be still necessary to call it.

To make the compiler do what you want it do, I think you need to make
__nv_patches const.


You are receiving this mail because: