[llvm-commits] CVS: reopt/lib/BinInterface/select.cpp sparcbin.cpp

Brian Gaeke gaeke at cs.uiuc.edu
Fri Oct 10 13:46:11 PDT 2003


Changes in directory reopt/lib/BinInterface:

select.cpp updated: 1.10 -> 1.11
sparcbin.cpp updated: 1.13 -> 1.14

---
Log message:

Don't include "Config/stdlib.h".
Include <cstdio> instead of <stdio.h>.
Don't use std::pair.


---
Diffs of the changes:  (+3 -7)

Index: reopt/lib/BinInterface/select.cpp
diff -u reopt/lib/BinInterface/select.cpp:1.10 reopt/lib/BinInterface/select.cpp:1.11
--- reopt/lib/BinInterface/select.cpp:1.10	Sat Sep 13 16:12:05 2003
+++ reopt/lib/BinInterface/select.cpp	Fri Oct 10 13:44:55 2003
@@ -11,13 +11,11 @@
 #include "reopt/BinInterface/bitmath.h"  // binary math routines
 #include "reopt/BinInterface/sparc9.h"   // SPARC9 opcode definitions
 #include "reopt/BinInterface/regmask.h"  // Register mask allocator
-#include "Config/stdio.h"
-#include "Config/stdlib.h"
+#include <cstdio>
 #include <vector>
 #include <cassert>
 
-using std::pair;
-
+using std::vector;
 
 //*****************************************************************************
 // select(regalloc & regs)


Index: reopt/lib/BinInterface/sparcbin.cpp
diff -u reopt/lib/BinInterface/sparcbin.cpp:1.13 reopt/lib/BinInterface/sparcbin.cpp:1.14
--- reopt/lib/BinInterface/sparcbin.cpp:1.13	Sat Sep 13 16:12:06 2003
+++ reopt/lib/BinInterface/sparcbin.cpp	Fri Oct 10 13:44:55 2003
@@ -14,13 +14,11 @@
 #include "reopt/BinInterface/sparcdis.h"  // sparc disassembler
 #include "reopt/BinInterface/bitmath.h" // binary math routines
 #include "reopt/BinInterface/sparc9.h"  // SPARC 9 opcode definitions
-#include "Config/stdio.h"
-#include "Config/stdlib.h"
+#include <cstdio>
 #include <cassert>
 #include <vector>
 #include <new>
 
-using std::pair;
 using std::vector;
 
 //*****************************************************************************





More information about the llvm-commits mailing list