rename selection library to selectiondag
authorChris Lattner <sabre@nondot.org>
Fri, 15 Aug 2003 04:56:09 +0000 (04:56 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 15 Aug 2003 04:56:09 +0000 (04:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7878 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Makefile
tools/gccld/gccld.cpp
tools/llc/Makefile
tools/lli/Makefile

index 883a906b33135137cd930902f6b82c2fdf76198b..d1ba9b6e979e55206875d14031bd05a65bd91726 100644 (file)
@@ -19,7 +19,7 @@ endif
 # What the X86 JIT requires
 ifdef ENABLE_X86_JIT
   CPPFLAGS += -DENABLE_X86_JIT
-  JITLIBS  += x86 selection
+  JITLIBS  += x86 selectiondag
   # X86 doesn't require any ARCHLIBS
 endif
 
index 5b56bd830d3f47327f8715b6ad5ee1872d02aa37..817de61fec4ed0294a3be4bc1fa679fddba2284f 100644 (file)
@@ -367,7 +367,7 @@ int main(int argc, char **argv) {
   PassManager Passes;
 
   // Add an appropriate TargetData instance for this module...
-  Passes.add(new TargetData("gccas", Composite.get()));
+  Passes.add(new TargetData("gccld", Composite.get()));
 
   // Linking modules together can lead to duplicated global constants, only keep
   // one copy of each constant...
@@ -387,6 +387,7 @@ int main(int argc, char **argv) {
   // arguments).  This pass merges the two functions.
   //
   Passes.add(createFunctionResolvingPass());
+  Passes.add(createFunctionResolvingPass());
 
   if (!NoInternalize) {
     // Now that composite has been compiled, scan through the module, looking
index fd2b6058969fce9abb0a04394bfe6b628b037956..56ed57ab3402b771ee07db8f26d59d8780db7d17 100644 (file)
@@ -2,7 +2,7 @@ LEVEL = ../..
 TOOLNAME = llc
 USEDLIBS = sparc \
            x86 \
-          selection \
+          selectiondag \
            regalloc \
            sched \
            select \
index 883a906b33135137cd930902f6b82c2fdf76198b..d1ba9b6e979e55206875d14031bd05a65bd91726 100644 (file)
@@ -19,7 +19,7 @@ endif
 # What the X86 JIT requires
 ifdef ENABLE_X86_JIT
   CPPFLAGS += -DENABLE_X86_JIT
-  JITLIBS  += x86 selection
+  JITLIBS  += x86 selectiondag
   # X86 doesn't require any ARCHLIBS
 endif