Remove assert hack now that I'm using the right GDB. :)

llvm-svn: 3045
This commit is contained in:
Chris Lattner 2002-07-24 17:21:36 +00:00
parent b67e0533b7
commit 25fde60989

View File

@ -10,13 +10,6 @@
#include "llvm/Pass.h"
#include <string>
// Hack around broken gdb! stack traces from system assert don't work, but do
// from a fault. :(
#undef assert
#define assert(x) \
do { if (!(x)) { std::cerr << "assertion failure!: " #x "\n"; \
int *P = 0; *P = 17; }} while (0)
class Type;
class GlobalValue;
class DSNode; // Each node in the graph