diff options
author | Tim Northover <tnorthover@apple.com> | 2016-08-17 20:25:25 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2016-08-17 20:25:25 +0000 |
commit | de3aea04129bcde27b025e4619519b4ff01be226 (patch) | |
tree | f0e860c5864339bac8d6a3cb34586b19bd44191d /llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp | |
parent | e4d8225e72da7a002848dd016c40fee65faf3cd2 (diff) | |
download | bcm5719-llvm-de3aea04129bcde27b025e4619519b4ff01be226.tar.gz bcm5719-llvm-de3aea04129bcde27b025e4619519b4ff01be226.zip |
GlobalISel: support irtranslation of icmp instructions.
llvm-svn: 278969
Diffstat (limited to 'llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp b/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp index e74b1ab483b..062f7c6cb52 100644 --- a/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp +++ b/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp @@ -658,6 +658,7 @@ static bool IsAnAddressOperand(const MachineOperand &MO) { case MachineOperand::MO_CFIIndex: return false; case MachineOperand::MO_IntrinsicID: + case MachineOperand::MO_Predicate: llvm_unreachable("should not exist post-isel"); } llvm_unreachable("unhandled machine operand type"); |