diff options
Diffstat (limited to 'lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp')
| -rw-r--r-- | lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp b/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp index 4760ac4456d0..0c627d04698b 100644 --- a/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp +++ b/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp @@ -43,9 +43,8 @@ static const char *ARCBRCondCodeToString(ARCCC::BRCondCode BRCC) {      return "lo";    case ARCCC::BRHS:      return "hs"; -  default: -    llvm_unreachable("Unhandled ARCCC::BRCondCode");    } +  llvm_unreachable("Unhandled ARCCC::BRCondCode");  }  static const char *ARCCondCodeToString(ARCCC::CondCode CC) { @@ -66,6 +65,10 @@ static const char *ARCCondCodeToString(ARCCC::CondCode CC) {      return "gt";    case ARCCC::GE:      return "ge"; +  case ARCCC::VS: +    return "vs"; +  case ARCCC::VC: +    return "vc";    case ARCCC::LT:      return "lt";    case ARCCC::LE:  | 
