X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FIR%2FType.cpp;h=d8baf7c9d332b2c1c9ce3d77675186a955f1afff;hb=c8be244db70dfc071528c5b4e9387df91f2b0031;hp=65060dc39d277c583ae9db4b866bb5227a6c37a2;hpb=ffc97a6ae100296b9259dc3e541f5ad72b06b672;p=oota-llvm.git diff --git a/lib/IR/Type.cpp b/lib/IR/Type.cpp index 65060dc39d2..d8baf7c9d33 100644 --- a/lib/IR/Type.cpp +++ b/lib/IR/Type.cpp @@ -238,6 +238,7 @@ IntegerType *Type::getInt8Ty(LLVMContext &C) { return &C.pImpl->Int8Ty; } IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; } IntegerType *Type::getInt32Ty(LLVMContext &C) { return &C.pImpl->Int32Ty; } IntegerType *Type::getInt64Ty(LLVMContext &C) { return &C.pImpl->Int64Ty; } +IntegerType *Type::getInt128Ty(LLVMContext &C) { return &C.pImpl->Int128Ty; } IntegerType *Type::getIntNTy(LLVMContext &C, unsigned N) { return IntegerType::get(C, N);