[llvm-commits] CVS: llvm/include/llvm/Target/TargetData.h
Reid Spencer
reid at x10sys.com
Thu Feb 15 14:07:26 PST 2007
Changes in directory llvm/include/llvm/Target:
TargetData.h updated: 1.55 -> 1.56
---
Log message:
For PR1195: http://llvm.org/PR1195 :
PACKED_ALIGN -> VECTOR_ALIGN
---
Diffs of the changes: (+1 -1)
TargetData.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/Target/TargetData.h
diff -u llvm/include/llvm/Target/TargetData.h:1.55 llvm/include/llvm/Target/TargetData.h:1.56
--- llvm/include/llvm/Target/TargetData.h:1.55 Wed Feb 14 20:11:06 2007
+++ llvm/include/llvm/Target/TargetData.h Thu Feb 15 16:07:05 2007
@@ -36,7 +36,7 @@
/// Enum used to categorize the alignment types stored by TargetAlignElem
enum AlignTypeEnum {
INTEGER_ALIGN = 'i', ///< Integer type alignment
- PACKED_ALIGN = 'v', ///< Vector type alignment
+ VECTOR_ALIGN = 'v', ///< Vector type alignment
FLOAT_ALIGN = 'f', ///< Floating point type alignment
AGGREGATE_ALIGN = 'a' ///< Aggregate alignment
};
More information about the llvm-commits
mailing list