Timur Tabi
2018-12-06 00:03:50 UTC
This line is rejected by coccinelle:
NvU64 barSize = pBus->PciBarSizes[i] * 0x100000llu;
If I change the "llu" to "ull", it works. However, "llu" appears to
be valid C, so it should be accepted. Or at least, gcc accepts it. A
google search says that it's new in C++14.
NvU64 barSize = pBus->PciBarSizes[i] * 0x100000llu;
If I change the "llu" to "ull", it works. However, "llu" appears to
be valid C, so it should be accepted. Or at least, gcc accepts it. A
google search says that it's new in C++14.