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 | 015b714f298ce3122302a4e996b81bd3e8c750cd (patch) | |
tree | dcd5f97baed9990e7ebd35afcb24cd3acc625f8c /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | ed871805f718f6bd0f9f32888b82c66545fc1157 (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-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 7cd9eef2ab..2828bf00ab 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/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 |