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

This reverts commit 4ba4acc1bc2561b944a571edbb6a2dc78e357dfe.

llvm-svn: 160296
This commit is contained in:
Tom Stellard 2012-07-16 18:19:37 +00:00
parent f65e78b2fa
commit 2e007de42d
1 changed files with 1 additions and 1 deletions

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");
}