[llvm-commits] CVS: llvm/lib/Target/Sparc/InstrSelection/InstrSelectionSupport.cpp Makefile
Chris Lattner
lattner at cs.uiuc.edu
Fri Jan 9 00:23:01 PST 2004
Changes in directory llvm/lib/Target/Sparc/InstrSelection:
InstrSelectionSupport.cpp updated: 1.60 -> 1.61
Makefile updated: 1.3 -> 1.4
---
Log message:
Move InstrSelection into lib/Target/Sparc, as it's sparc specific. This
makes the incestuous #include'ing of sparc internal headers much less
disturbing. :)
---
Diffs of the changes: (+3 -4)
Index: llvm/lib/Target/Sparc/InstrSelection/InstrSelectionSupport.cpp
diff -u llvm/lib/Target/Sparc/InstrSelection/InstrSelectionSupport.cpp:1.60 llvm/lib/Target/Sparc/InstrSelection/InstrSelectionSupport.cpp:1.61
--- llvm/lib/Target/Sparc/InstrSelection/InstrSelectionSupport.cpp:1.60 Sun Dec 14 07:24:16 2003
+++ llvm/lib/Target/Sparc/InstrSelection/InstrSelectionSupport.cpp Fri Jan 9 00:22:34 2004
@@ -23,7 +23,7 @@
#include "llvm/Constants.h"
#include "llvm/BasicBlock.h"
#include "llvm/DerivedTypes.h"
-#include "../../Target/Sparc/SparcInstrSelectionSupport.h" // FIXME!
+#include "../SparcInstrSelectionSupport.h"
namespace llvm {
Index: llvm/lib/Target/Sparc/InstrSelection/Makefile
diff -u llvm/lib/Target/Sparc/InstrSelection/Makefile:1.3 llvm/lib/Target/Sparc/InstrSelection/Makefile:1.4
--- llvm/lib/Target/Sparc/InstrSelection/Makefile:1.3 Mon Oct 20 17:26:56 2003
+++ llvm/lib/Target/Sparc/InstrSelection/Makefile Fri Jan 9 00:22:34 2004
@@ -1,4 +1,4 @@
-##===- lib/CodeGen/InstrSelection/Makefile -----------------*- Makefile -*-===##
+##===- Target/Sparc/InstrSelection/Makefile ----------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
@@ -6,10 +6,9 @@
# the University of Illinois Open Source License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
-LEVEL = ../../..
+LEVEL = ../../../..
DIRS =
-
LIBRARYNAME = select
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list