diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp b/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp index c7dd3581eae..b9e5788cf01 100644 --- a/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp +++ b/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp @@ -101,7 +101,7 @@ SystemZHazardRecognizer::fitsIntoCurrentGroup(SUnit *SU) const { return (CurrGroupSize == 0); // An instruction with 4 register operands will not fit in last slot. - assert ((CurrGroupSize < 2 || !CurrGroupHas4RegOps) || + assert ((CurrGroupSize < 2 || !CurrGroupHas4RegOps) && "Current decoder group is already full!"); if (CurrGroupSize == 2 && has4RegOps(SU->getInstr())) return false; |