[llvm-commits] CVS: llvm/utils/TableGen/InstrSelectorEmitter.h

John Criswell criswell at cs.uiuc.edu
Wed Aug 20 17:08:05 PDT 2003


Changes in directory llvm/utils/TableGen:

InstrSelectorEmitter.h updated: 1.20 -> 1.21

---
Log message:

Added #include <cassert>.  In GCC 3.3, we don't get assert() through the other
language header files like we did under 3.2.1, and we're not grabbing it
through the LLVM header files either.  So just include it directly.



---
Diffs of the changes:

Index: llvm/utils/TableGen/InstrSelectorEmitter.h
diff -u llvm/utils/TableGen/InstrSelectorEmitter.h:1.20 llvm/utils/TableGen/InstrSelectorEmitter.h:1.21
--- llvm/utils/TableGen/InstrSelectorEmitter.h:1.20	Mon Aug 11 23:56:42 2003
+++ llvm/utils/TableGen/InstrSelectorEmitter.h	Wed Aug 20 17:07:45 2003
@@ -12,6 +12,8 @@
 #include "CodeGenWrappers.h"
 #include <vector>
 #include <map>
+#include <cassert>
+
 class DagInit;
 class Init;
 class InstrSelectorEmitter;





More information about the llvm-commits mailing list