aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Lin <tclin914@gmail.com>2020-03-02 18:46:22 +0800
committerJim Lin <tclin914@gmail.com>2020-03-03 09:43:52 +0800
commitc0a2da9460db7b654e114f03d5cd250bf6e817ef (patch)
tree0b17e0114dcc46db8c7552cc310119b6e1b99bb4
parentb796acbba24fb97e260c00c45cdf356c7a635581 (diff)
downloadllvm-c0a2da9460db7b654e114f03d5cd250bf6e817ef.zip
llvm-c0a2da9460db7b654e114f03d5cd250bf6e817ef.tar.gz
llvm-c0a2da9460db7b654e114f03d5cd250bf6e817ef.tar.bz2
[AVR] Add missing ROLLOOP and RORLOOP into getTargetNodeName
-rw-r--r--llvm/lib/Target/AVR/AVRISelLowering.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/AVR/AVRISelLowering.cpp b/llvm/lib/Target/AVR/AVRISelLowering.cpp
index 8806888..9d14eb9 100644
--- a/llvm/lib/Target/AVR/AVRISelLowering.cpp
+++ b/llvm/lib/Target/AVR/AVRISelLowering.cpp
@@ -259,6 +259,8 @@ const char *AVRTargetLowering::getTargetNodeName(unsigned Opcode) const {
NODE(ASR);
NODE(LSLLOOP);
NODE(LSRLOOP);
+ NODE(ROLLOOP);
+ NODE(RORLOOP);
NODE(ASRLOOP);
NODE(BRCOND);
NODE(CMP);