From: Ted Kremenek Date: Mon, 28 Apr 2008 17:58:20 +0000 (+0000) Subject: Add more alignment enums. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9d695d5f7d31e912a2be74229b3e2baab2564820;p=oota-llvm.git Add more alignment enums. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50363 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/AlignOf.h b/include/llvm/Support/AlignOf.h index a6d3f25c26d..108c59f0eb4 100644 --- a/include/llvm/Support/AlignOf.h +++ b/include/llvm/Support/AlignOf.h @@ -35,10 +35,17 @@ private: template struct AlignOf { enum { Alignment = sizeof(AlignmentCalcImpl) - sizeof(T) }; + enum { Alignment_GreaterEqual_2Bytes = Alignment >= 2 ? 1 : 0 }; enum { Alignment_GreaterEqual_4Bytes = Alignment >= 4 ? 1 : 0 }; enum { Alignment_GreaterEqual_8Bytes = Alignment >= 8 ? 1 : 0 }; enum { Alignment_GreaterEqual_16Bytes = Alignment >= 16 ? 1 : 0 }; + + enum { Alignment_LessEqual_2Bytes = Alignment <= 2 ? 1 : 0 }; + enum { Alignment_LessEqual_4Bytes = Alignment <= 4 ? 1 : 0 }; + enum { Alignment_LessEqual_8Bytes = Alignment <= 8 ? 1 : 0 }; + enum { Alignment_LessEqual_16Bytes = Alignment <= 16 ? 1 : 0 }; + }; /// alignof - A templated function that returns the mininum alignment of