diff options
author | Dan Gohman <gohman@apple.com> | 2008-09-19 18:09:19 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-09-19 18:09:19 +0000 |
commit | 83ee17cdb1e1d665ea234b21383811e05ff1943c (patch) | |
tree | a4f6f65782b744729ae818736519c59bd547da5b /llvm | |
parent | 36d4cbc382ef924d0cbe2f25e989f2cdfbe3f826 (diff) | |
download | bcm5719-llvm-83ee17cdb1e1d665ea234b21383811e05ff1943c.tar.gz bcm5719-llvm-83ee17cdb1e1d665ea234b21383811e05ff1943c.zip |
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.
llvm-svn: 56358
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h index 7cd9eef2abc..2828bf00ab7 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h @@ -2417,7 +2417,7 @@ typedef LoadSDNode LargestSDNode; /// 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 |