diff options
author | JF Bastien <jfb@google.com> | 2015-08-11 21:10:07 +0000 |
---|---|---|
committer | JF Bastien <jfb@google.com> | 2015-08-11 21:10:07 +0000 |
commit | 0cf74528d00188f55907769017ab8ce7213d06a3 (patch) | |
tree | 1eaf8bff40e03c09f583ccbcaae0d230ab742ecd /llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | |
parent | 6f6d0b6c5a37a42f17591e37a30c911ec1c52898 (diff) | |
download | bcm5719-llvm-0cf74528d00188f55907769017ab8ce7213d06a3.tar.gz bcm5719-llvm-0cf74528d00188f55907769017ab8ce7213d06a3.zip |
NFC SelectionDAGDumper: fix typo
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D11959
llvm-svn: 244667
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp index cbb0aa1a760..4c8658e51ca 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp @@ -325,7 +325,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { case ISD::SETO: return "seto"; case ISD::SETUO: return "setuo"; - case ISD::SETUEQ: return "setue"; + case ISD::SETUEQ: return "setueq"; case ISD::SETUGT: return "setugt"; case ISD::SETUGE: return "setuge"; case ISD::SETULT: return "setult"; |