[llvm-commits] CVS: llvm/include/llvm/Reoptimizer/BinInterface/regmask.h sparcbin.h
John Criswell
criswell at cs.uiuc.edu
Wed Jun 11 09:02:10 PDT 2003
Changes in directory llvm/include/llvm/Reoptimizer/BinInterface:
regmask.h updated: 1.1 -> 1.2
sparcbin.h updated: 1.2 -> 1.3
---
Log message:
Included assert.h so that the code compiles under newer versions of GCC.
---
Diffs of the changes:
Index: llvm/include/llvm/Reoptimizer/BinInterface/regmask.h
diff -u llvm/include/llvm/Reoptimizer/BinInterface/regmask.h:1.1 llvm/include/llvm/Reoptimizer/BinInterface/regmask.h:1.2
--- llvm/include/llvm/Reoptimizer/BinInterface/regmask.h:1.1 Sat May 31 17:16:47 2003
+++ llvm/include/llvm/Reoptimizer/BinInterface/regmask.h Wed Jun 11 09:01:34 2003
@@ -11,6 +11,7 @@
#include "bitmath.h"
#include <vector>
#include <iostream>
+#include <assert.h>
#define VREG_ISMEM(x) (x >= 32)
#define VREG_ISREG(x) (x < 32)
Index: llvm/include/llvm/Reoptimizer/BinInterface/sparcbin.h
diff -u llvm/include/llvm/Reoptimizer/BinInterface/sparcbin.h:1.2 llvm/include/llvm/Reoptimizer/BinInterface/sparcbin.h:1.3
--- llvm/include/llvm/Reoptimizer/BinInterface/sparcbin.h:1.2 Wed Jun 4 04:42:22 2003
+++ llvm/include/llvm/Reoptimizer/BinInterface/sparcbin.h Wed Jun 11 09:01:34 2003
@@ -18,6 +18,7 @@
#include "sparcpriv.h"
#include <map>
#include <vector>
+#include <assert.h>
using std::vector;
More information about the llvm-commits
mailing list