diff options
| author | Dan Gohman <gohman@apple.com> | 2011-12-17 00:04:22 +0000 | 
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2011-12-17 00:04:22 +0000 | 
| commit | 518cda42b9dc8b8acb382ae3f49141985f706459 (patch) | |
| tree | 58a5083e95eafbb678def679f707ecf7d4415ccf /llvm/lib/VMCore/LLVMContextImpl.h | |
| parent | 27886c6c1efd95ddda693f2f77a301956505b11d (diff) | |
| download | bcm5719-llvm-518cda42b9dc8b8acb382ae3f49141985f706459.tar.gz bcm5719-llvm-518cda42b9dc8b8acb382ae3f49141985f706459.zip | |
The powers that be have decided that LLVM IR should now support 16-bit
"half precision" floating-point with a first-class type.
This patch adds basic IR support (but not codegen support).
llvm-svn: 146786
Diffstat (limited to 'llvm/lib/VMCore/LLVMContextImpl.h')
| -rw-r--r-- | llvm/lib/VMCore/LLVMContextImpl.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/VMCore/LLVMContextImpl.h b/llvm/lib/VMCore/LLVMContextImpl.h index a3f68fecbbf..30f9d469878 100644 --- a/llvm/lib/VMCore/LLVMContextImpl.h +++ b/llvm/lib/VMCore/LLVMContextImpl.h @@ -169,7 +169,7 @@ public:    LeakDetectorImpl<Value> LLVMObjects;    // Basic type instances. -  Type VoidTy, LabelTy, FloatTy, DoubleTy, MetadataTy; +  Type VoidTy, LabelTy, HalfTy, FloatTy, DoubleTy, MetadataTy;    Type X86_FP80Ty, FP128Ty, PPC_FP128Ty, X86_MMXTy;    IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty; | 

