mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-24 15:12:36 +00:00
rename selection library to selectiondag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7878 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
79ba7c1aee
commit
80df4638fe
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -2,7 +2,7 @@ LEVEL = ../..
|
||||
TOOLNAME = llc
|
||||
USEDLIBS = sparc \
|
||||
x86 \
|
||||
selection \
|
||||
selectiondag \
|
||||
regalloc \
|
||||
sched \
|
||||
select \
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user