diff options
author | Richard Osborne <richard@xmos.com> | 2009-10-08 17:14:57 +0000 |
---|---|---|
committer | Richard Osborne <richard@xmos.com> | 2009-10-08 17:14:57 +0000 |
commit | bfa19bf4c2f0d7ac6f69b801abf51adbddc16454 (patch) | |
tree | 8b40113bf99261c2fb4f0c4deabb2732594676dc | |
parent | 8a261e44f71a433b7d9af373c3e3dfa6fea67146 (diff) |
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
-rw-r--r-- | lib/Target/XCore/XCoreISelLowering.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/XCore/XCoreISelLowering.cpp b/lib/Target/XCore/XCoreISelLowering.cpp index 10d7730f55..5ef56c9ff2 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; } } |