[llvm-commits] [llvm] r56358 - /llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Dan Gohman gohman at apple.com
Fri Sep 19 11:09:19 PDT 2008


Author: djg
Date: Fri Sep 19 13:09:19 2008
New Revision: 56358

URL: http://llvm.org/viewvc/llvm-project?rev=56358&view=rev
Log:
Now that ConstantSDNode doesn't hold an APInt,
use ARG_FLAGSSDNode as the most aligned node type,
as it contains an int64_t, which is 8-byte
aligned on mingw.

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=56358&r1=56357&r2=56358&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h Fri Sep 19 13:09:19 2008
@@ -2417,7 +2417,7 @@
 /// MostAlignedSDNode - The SDNode class with the greatest alignment
 /// requirement.
 ///
-typedef ConstantSDNode MostAlignedSDNode;
+typedef ARG_FLAGSSDNode MostAlignedSDNode;
 
 namespace ISD {
   /// isNormalLoad - Returns true if the specified node is a non-extending





More information about the llvm-commits mailing list