diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-12-19 03:21:36 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-12-19 03:21:36 +0000 |
commit | f8ca42ff59e01126c8bcfc41c3d35c8b73f1e8b3 (patch) | |
tree | 626b2257a68df92e1f35af83891196ed91d3ca81 | |
parent | 8ed9f51663bc5533f36ca62e5668ae08e9a1313f (diff) |
Remove spurious semicolon. Thanks, Clang
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91752 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 852a4f3dab..7b1931abcc 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1228,7 +1228,7 @@ public: SDVTList getVTList() const { SDVTList X = { ValueList, NumValues }; return X; - }; + } /// getFlaggedNode - If this node has a flag operand, return the node /// to which the flag operand points. Otherwise return NULL. |