mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-01 15:24:04 +00:00

This uses less memory and it reduces the complexity of sub-class operations: - hasSubClassEq() and friends become O(1) instead of O(N). - getCommonSubClass() becomes O(N) instead of O(N^2). In the future, TableGen will infer register classes. This makes it cheap to add them. llvm-svn: 140898