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

This reverts commit 4ba4acc1bc2561b944a571edbb6a2dc78e357dfe.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160296 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tom Stellard 2012-07-16 18:19:37 +00:00
parent 82d6979f0a
commit 80b9fe19c5

View File

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