mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 06:29:59 +00:00
74568bc9d4
and TargetInstrDescriptor::ImplicitUses to always point to a null terminated array and never be null. So there is no need to check for pointer validity when iterating over those sets. Code that looked like: if (const unsigned* AS = TID.ImplicitDefs) { for (int i = 0; AS[i]; ++i) { // use AS[i] } } was changed to: for (const unsigned* AS = TID.ImplicitDefs; *AS; ++AS) { // use *AS } llvm-svn: 8960 |
||
---|---|---|
.. | ||
Burg | ||
emacs | ||
TableGen | ||
vim | ||
codegen-diff | ||
cvsupdate | ||
getsrcs.sh | ||
Makefile | ||
makellvm | ||
NightlyTest.gnuplot | ||
NightlyTest.pl | ||
NightlyTestTemplate.html |