1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

rename selection library to selectiondag

llvm-svn: 7878
This commit is contained in:
Chris Lattner 2003-08-15 04:56:09 +00:00
parent d5ff87cb9b
commit 0427dd4f4f
4 changed files with 5 additions and 4 deletions

View File

@ -19,7 +19,7 @@ endif
# What the X86 JIT requires # What the X86 JIT requires
ifdef ENABLE_X86_JIT ifdef ENABLE_X86_JIT
CPPFLAGS += -DENABLE_X86_JIT CPPFLAGS += -DENABLE_X86_JIT
JITLIBS += x86 selection JITLIBS += x86 selectiondag
# X86 doesn't require any ARCHLIBS # X86 doesn't require any ARCHLIBS
endif endif

View File

@ -367,7 +367,7 @@ int main(int argc, char **argv) {
PassManager Passes; PassManager Passes;
// Add an appropriate TargetData instance for this module... // 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 // Linking modules together can lead to duplicated global constants, only keep
// one copy of each constant... // one copy of each constant...
@ -387,6 +387,7 @@ int main(int argc, char **argv) {
// arguments). This pass merges the two functions. // arguments). This pass merges the two functions.
// //
Passes.add(createFunctionResolvingPass()); Passes.add(createFunctionResolvingPass());
Passes.add(createFunctionResolvingPass());
if (!NoInternalize) { if (!NoInternalize) {
// Now that composite has been compiled, scan through the module, looking // Now that composite has been compiled, scan through the module, looking

View File

@ -2,7 +2,7 @@ LEVEL = ../..
TOOLNAME = llc TOOLNAME = llc
USEDLIBS = sparc \ USEDLIBS = sparc \
x86 \ x86 \
selection \ selectiondag \
regalloc \ regalloc \
sched \ sched \
select \ select \

View File

@ -19,7 +19,7 @@ endif
# What the X86 JIT requires # What the X86 JIT requires
ifdef ENABLE_X86_JIT ifdef ENABLE_X86_JIT
CPPFLAGS += -DENABLE_X86_JIT CPPFLAGS += -DENABLE_X86_JIT
JITLIBS += x86 selection JITLIBS += x86 selectiondag
# X86 doesn't require any ARCHLIBS # X86 doesn't require any ARCHLIBS
endif endif