mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-29 14:40:25 +00:00
Remove assert hack now that I'm using the right GDB. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3045 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ddd3e61bd3
commit
f6a1328e4c
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user