[llvm-commits] [127337] Enable 128-bit integer types in the front-end, accessible with
clattner at apple.com
clattner at apple.com
Wed May 16 23:27:45 PDT 2007
Revision: 127337
Author: clattner
Date: 2007-05-16 23:27:45 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Enable 128-bit integer types in the front-end, accessible with
things like:
typedef int TI __attribute__((mode(TI)));
on 64-bit targets.
Modified Paths:
--------------
apple-local/branches/llvm/gcc/llvm-types.cpp
Modified: apple-local/branches/llvm/gcc/llvm-types.cpp
===================================================================
--- apple-local/branches/llvm/gcc/llvm-types.cpp 2007-05-17 06:23:29 UTC (rev 127336)
+++ apple-local/branches/llvm/gcc/llvm-types.cpp 2007-05-17 06:27:45 UTC (rev 127337)
@@ -494,6 +494,7 @@
case 16:
case 32:
case 64:
+ case 128:
break;
default:
static bool Warned = false;
More information about the llvm-commits
mailing list