aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-10-01 11:56:16 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-10-01 11:56:16 +0000
commit90012586f79895a8104e1e65689041fec52d788d (patch)
tree3312da8dc2bdce91e68c9635060dd3aefd7f6d2a
parent64f27e78c4af3b69930b1d05b13b80cb025f4079 (diff)
TargetData: s/uint32_t/unsigned/ per Kuba's request.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164935 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Target/TargetData.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetData.h b/include/llvm/Target/TargetData.h
index c97af7db68..71dec67779 100644
--- a/include/llvm/Target/TargetData.h
+++ b/include/llvm/Target/TargetData.h
@@ -53,10 +53,10 @@ enum AlignTypeEnum {
/// @note The unusual order of elements in the structure attempts to reduce
/// padding and make the structure slightly more cache friendly.
struct TargetAlignElem {
- uint32_t AlignType : 8; ///< Alignment type (AlignTypeEnum)
- uint32_t TypeBitWidth : 24; ///< Type bit width
- uint32_t ABIAlign : 16; ///< ABI alignment for this type/bitw
- uint32_t PrefAlign : 16; ///< Pref. alignment for this type/bitw
+ unsigned AlignType : 8; ///< Alignment type (AlignTypeEnum)
+ unsigned TypeBitWidth : 24; ///< Type bit width
+ unsigned ABIAlign : 16; ///< ABI alignment for this type/bitw
+ unsigned PrefAlign : 16; ///< Pref. alignment for this type/bitw
/// Initializer
static TargetAlignElem get(AlignTypeEnum align_type, unsigned abi_align,