[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Integer/bits.h

Reid Spencer reid at x10sys.com
Wed May 16 21:34:52 PDT 2007



Changes in directory llvm-test/SingleSource/UnitTests/Integer:

bits.h updated: 1.8 -> 1.9
---
Log message:

Add 500 and 1024 bit wide unsigned integer types.


---
Diffs of the changes:  (+2 -0)

 bits.h |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm-test/SingleSource/UnitTests/Integer/bits.h
diff -u llvm-test/SingleSource/UnitTests/Integer/bits.h:1.8 llvm-test/SingleSource/UnitTests/Integer/bits.h:1.9
--- llvm-test/SingleSource/UnitTests/Integer/bits.h:1.8	Wed May 16 14:33:49 2007
+++ llvm-test/SingleSource/UnitTests/Integer/bits.h	Wed May 16 23:34:32 2007
@@ -43,6 +43,8 @@
 typedef unsigned int __attribute__((bitwidth(128))) uint128;
 typedef unsigned int __attribute__((bitwidth(250))) uint250;
 typedef unsigned int __attribute__((bitwidth(256))) uint256;
+typedef unsigned int __attribute__((bitwidth(500))) uint500;
+typedef unsigned int __attribute__((bitwidth(1024))) uint1024;
 
 typedef int __attribute__((bitwidth(9)))  int9;
 typedef int __attribute__((bitwidth(10))) int10;






More information about the llvm-commits mailing list