Revert part of 186302 to fix buildbots.

llvm-svn: 186303
This commit is contained in:
Craig Topper 2013-07-15 04:37:54 +00:00
parent 93b402d924
commit 26b45c27f1
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ static struct {
static void RegisterHandler(int Signal) {
assert(NumRegisteredSignals < array_lengthof(RegisteredSignalInfo) &&
assert(NumRegisteredSignals <
sizeof(RegisteredSignalInfo)/sizeof(RegisteredSignalInfo[0]) &&
"Out of space for signal handlers!");
struct sigaction NewHandler;