[llvm-commits] [llvm] r66280 - /llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
Tanya Lattner
tonic at nondot.org
Fri Mar 6 10:17:45 PST 2009
Author: tbrethou
Date: Fri Mar 6 12:17:45 2009
New Revision: 66280
URL: http://llvm.org/viewvc/llvm-project?rev=66280&view=rev
Log:
Add default constructor to SDNode to make gcc 3.4.6 happy.
Modified:
llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h?rev=66280&r1=66279&r2=66280&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h Fri Mar 6 12:17:45 2009
@@ -1114,6 +1114,10 @@
friend struct ilist_traits<SDNode>;
public:
+
+ /// Default SDNode constructor.
+ SDNode() {}
+
//===--------------------------------------------------------------------===//
// Accessors
//
More information about the llvm-commits
mailing list