1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

remove a terrible hack that disabled assertions from this file because of build time

problems.  rdar://7697850.

llvm-svn: 97500
This commit is contained in:
Chris Lattner 2010-03-01 21:20:46 +00:00
parent fe3fae23e4
commit fa3b904028

View File

@ -12,15 +12,6 @@
//
//===----------------------------------------------------------------------===//
// Force NDEBUG on in any optimized build on Darwin.
//
// FIXME: This is a huge hack, to work around ridiculously awful compile times
// on this file with gcc-4.2 on Darwin, in Release mode.
#if (!defined(__llvm__) && defined(__APPLE__) && \
defined(__OPTIMIZE__) && !defined(NDEBUG))
#define NDEBUG
#endif
#define DEBUG_TYPE "x86-isel"
#include "X86.h"
#include "X86InstrBuilder.h"