Target/AMDGPU/AMDILIntrinsicInfo.cpp: Use llvm_unreachable() in nonreturn function, instead of assert(0).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160279 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2012-07-16 15:43:09 +00:00
parent addafc87a1
commit b22d251dcc

View File

@ -89,5 +89,5 @@ AMDILIntrinsicInfo::getDeclaration(Module *M, unsigned IntrID,
//Silence a warning
AttrListPtr List = getAttributes((AMDGPUIntrinsic::ID)IntrID);
(void)List;
assert(!"Not implemented");
llvm_unreachable("Not implemented");
}