From: Richard Osborne Date: Thu, 8 Oct 2009 17:14:57 +0000 (+0000) Subject: Add missing names for the XCore specific LADD and LSUB nodes. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bfa19bf4c2f0d7ac6f69b801abf51adbddc16454;p=oota-llvm.git Add missing names for the XCore specific LADD and LSUB nodes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83556 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/XCore/XCoreISelLowering.cpp b/lib/Target/XCore/XCoreISelLowering.cpp index 10d7730f553..5ef56c9ff29 100644 --- a/lib/Target/XCore/XCoreISelLowering.cpp +++ b/lib/Target/XCore/XCoreISelLowering.cpp @@ -51,6 +51,8 @@ getTargetNodeName(unsigned Opcode) const case XCoreISD::CPRelativeWrapper : return "XCoreISD::CPRelativeWrapper"; case XCoreISD::STWSP : return "XCoreISD::STWSP"; case XCoreISD::RETSP : return "XCoreISD::RETSP"; + case XCoreISD::LADD : return "XCoreISD::LADD"; + case XCoreISD::LSUB : return "XCoreISD::LSUB"; default : return NULL; } }