X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=lib%2FVMCore%2FType.cpp;h=9ceed26e60287c027c7f398f5a448ff9956f3328;hp=c94e911f403b47b34fc96b4ff67daf52b2ceb212;hb=c23197a26f34f559ea9797de51e187087c039c42;hpb=1f316e321a8f2fa0e193c5444584a67a8aabe9a8 diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index c94e911f403..9ceed26e602 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -265,10 +265,10 @@ const Type *Type::getForwardedTypeInternal() const { } void Type::refineAbstractType(const DerivedType *OldTy, const Type *NewTy) { - LLVM_UNREACHABLE("Attempting to refine a derived type!"); + llvm_unreachable("Attempting to refine a derived type!"); } void Type::typeBecameConcrete(const DerivedType *AbsTy) { - LLVM_UNREACHABLE("DerivedType is already a concrete type!"); + llvm_unreachable("DerivedType is already a concrete type!"); } @@ -634,7 +634,7 @@ static bool TypesEqual(const Type *Ty, const Type *Ty2, } return true; } else { - LLVM_UNREACHABLE("Unknown derived type!"); + llvm_unreachable("Unknown derived type!"); return false; } }