diff options
| -rw-r--r-- | llvm/utils/TableGen/CodeGenSchedule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenSchedule.h b/llvm/utils/TableGen/CodeGenSchedule.h index ef2b32c37c4..3ed753c8ffe 100644 --- a/llvm/utils/TableGen/CodeGenSchedule.h +++ b/llvm/utils/TableGen/CodeGenSchedule.h @@ -322,7 +322,7 @@ struct PredicateInfo { /// There is at least one OpcodeInfo object for every opcode specified by a /// TIPredicate definition. class OpcodeInfo { - llvm::SmallVector<PredicateInfo, 8> Predicates; + std::vector<PredicateInfo> Predicates; OpcodeInfo(const OpcodeInfo &Other) = delete; OpcodeInfo &operator=(const OpcodeInfo &Other) = delete; |

