Browse code

New dependency generator.

Török Edvin authored on 2009/12/15 20:28:07
Showing 3 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,83 @@
0
+#!/usr/bin/perl
1
+use strict;
2
+use warnings;
3
+
4
+my $path = $ARGV[0];
5
+`(cd $path/tools/llvm-config; make ENABLE_OPTIMIZED=0 llvm-config-perobjincl)`;
6
+
7
+my %compdeps;
8
+my @codegencomponents = ('x86codegen','powerpccodegen','armcodegen');
9
+my @allnonsys = ('support','jit',@codegencomponents);
10
+my @allcomponents= ('system',@allnonsys);
11
+my $allJIT="jit core target lib/Support/FoldingSet.o lib/Support/PrettyStackTrace.o";
12
+for my $component (@allcomponents) {
13
+    $/ = " ";
14
+    if ($component =~ "jit") {
15
+	open DEPS, "$path/tools/llvm-config/llvm-config-perobjincl --libnames $allJIT|";
16
+    } else {
17
+	open DEPS, "$path/tools/llvm-config/llvm-config-perobjincl --libnames $component|";
18
+    }
19
+    while (<DEPS>) {
20
+	chomp;
21
+	s/[\n\r]//;
22
+	next if (!/\.o$/);
23
+        s/Support\/reg(.*).o/Support\/reg$1.c/;
24
+	s/\.o$/.cpp/;
25
+	$compdeps{$component}{$_}=1;
26
+    }
27
+    close DEPS or die "llvm-config failed";
28
+}
29
+
30
+# System is always linked in, so remove it from all else
31
+foreach my $systemcomp (keys %{$compdeps{'system'}}) {
32
+    foreach my $component (@allnonsys) {
33
+	delete $compdeps{$component}{$systemcomp} if defined $compdeps{$component}{$systemcomp};
34
+    }
35
+}
36
+
37
+# Eliminate components from codegen that are in JIT already.
38
+# and compute common codegen components.
39
+my %intersection = ();
40
+my %count = ();
41
+
42
+foreach my $codegen (@codegencomponents) {
43
+    my %newdeps;
44
+    for my $depobj (keys %{$compdeps{$codegen}}) {
45
+	next if $compdeps{'jit'}{$depobj};
46
+	$newdeps{$depobj}=1;
47
+	$count{$depobj}++;
48
+    }
49
+    $compdeps{$codegen} = \%newdeps;
50
+}
51
+foreach my $element (keys %count) {
52
+    $intersection{$element}=1 if $count{$element} > 1;
53
+}
54
+
55
+foreach my $codegen (@codegencomponents) {
56
+    foreach my $element (keys %intersection) {
57
+       delete $compdeps{$codegen}{$element};
58
+    }
59
+    # Move the system and support objs required (even if not common) to codegen,
60
+    # since these were already built for tblgen.
61
+    foreach my $element (keys %{$compdeps{'system'}}) {
62
+       next unless defined $compdeps{$codegen}{$element};
63
+       delete $compdeps{$codegen}{$element};
64
+       $intersection{$element}=1;
65
+    }
66
+    foreach my $element (keys %{$compdeps{'support'}}) {
67
+       next unless defined $compdeps{$codegen}{$element};
68
+       delete $compdeps{$codegen}{$element};
69
+       $intersection{$element}=1;
70
+    }
71
+}
72
+
73
+@allcomponents=(@allcomponents,'codegen');
74
+$compdeps{'codegen'}=\%intersection;
75
+
76
+foreach my $comp (@allcomponents) {
77
+    print "libllvm$comp"."_la_SOURCES=";
78
+    foreach my $dep (sort keys %{$compdeps{$comp}}) {
79
+	print "\\\n\tllvm/$dep";
80
+    }
81
+    print "\n\n";
82
+}
... ...
@@ -13,7 +13,13 @@
13 13
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
14 14
 #  MA 02110-1301, USA.
15 15
 
16
-AM_CPPFLAGS = -I$(top_srcdir)/../.. -I$(top_srcdir)/.. -I$(top_builddir)/../../
16
+LLVM_INCLUDES=-I$(top_srcdir)/llvm/include -I$(top_builddir)/llvm/include
17
+# TODO: _DEBUG should be defined for --enable-debug, and NDEBUG otherwise, but
18
+# keep it like this while I'm testing LLVM
19
+# TODO: HP-UX should have -D_REENTRANT -D_HPUX_SOURCE
20
+LLVM_DEFS=-D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_DEBUG -D_GNU_SOURCE
21
+AM_CPPFLAGS = -I$(top_srcdir)/../.. -I$(top_srcdir)/.. -I$(top_builddir)/../../ $(LLVM_INCLUDES) $(LLVM_DEFS)
22
+AM_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
17 23
 ACLOCAL_AMFLAGS=-I m4
18 24
 if DEBUG_BUILD
19 25
 LLVM_CONFIG=llvm/Debug/bin/llvm-config
... ...
@@ -28,136 +34,103 @@ endif
28 28
 #libclamavcxx_la_CPPFLAGS = $(AM_CPPFLAGS) `$(LLVM_CONFIG) --cppflags`
29 29
 #libclamavcxx_la_DEPENDENCIES = $(LLVM_DEPS)
30 30
 #libclamavcxx_la_LDFLAGS = `$(LLVM_CONFIG) --ldflags --libs jit nativecodegen`
31
-libclamavcxx_la_CPPFLAGS = $(AM_CPPFLAGS) $(LLVM_INCLUDES) $(LLVM_DEFS)
31
+#libclamavcxx_la_CPPFLAGS = $(AM_CPPFLAGS) $(LLVM_INCLUDES) $(LLVM_DEFS)
32 32
 #libclamavcxx_la_DEPENDENCIES = $(LLVM_DEPS)
33 33
 
34 34
 noinst_LTLIBRARIES = libclamavcxx.la libllvmsupport.la libllvmsystem.la\
35
-		     libllvmcore.la libllvmtarget.la libllvmsdag.la libllvmcodegen.la libllvmexecutionengine.la\
36
-		     libllvmscalar.la libllvmipa.la libllvmtransformutils.la\
37
-		     libllvmmc.la
38
-libclamavcxx_la_LIBADD=
35
+		     libllvmcodegen.la libllvmjit.la
36
+
37
+libclamavcxx_la_LIBADD=libllvmjit.la libllvmcodegen.la libllvmsystem.la
38
+libclamavcxx_la_DEPENDENCIES=libllvmjit.la libllvmcodegen.la libllvmsystem.la
39
+libclamavcxx_la_LDFLAGS=-no-undefined
40
+libclamavcxx_la_CXXFLAGS = $(LLVM_CXXFLAGS)
41
+libclamavcxx_la_SOURCES = bytecode2llvm.cpp
39 42
 if BUILD_X86
40
-libclamavcxx_la_LIBADD+=libllvmtargetx86.la
41
-noinst_LTLIBRARIES+=libllvmtargetx86.la
43
+libclamavcxx_la_LIBADD+=libllvmx86codegen.la
44
+libclamavcxx_la_DEPENDENCIES+=libllvmx86codegen.la
45
+noinst_LTLIBRARIES+=libllvmx86codegen.la
42 46
 endif
43 47
 if BUILD_PPC
44
-libclamavcxx_la_LIBADD+=libllvmtargetppc.la
45
-noinst_LTLIBRARIES+=libllvmtargetppc.la
48
+libclamavcxx_la_LIBADD+=libllvmpowerpccodegen.la
49
+libclamavcxx_la_DEPENDENCIES+=libllvmpowerpccodegen.la
50
+noinst_LTLIBRARIES+=libllvmpowerpccodegen.la
46 51
 endif
47 52
 if BUILD_ARM
48
-libclamavcxx_la_LIBADD+=libllvmtargetarm.la
49
-noinst_LTLIBRARIES+=libllvmtargetarm.la
53
+libclamavcxx_la_LIBADD+=libllvmarmcodegen.la
54
+libclamavcxx_la_DEPENDENCIES+=libllvmarmcodegen.la
55
+noinst_LTLIBRARIES+=libllvmarmcodegen.la
50 56
 endif
51 57
 
52
-libclamavcxx_la_LIBADD+=libllvmsdag.la libllvmexecutionengine.la\
53
-		       libllvmcodegen.la libllvmscalar.la\
54
-		       libllvmtransformutils.la libllvmipa.la libllvmtarget.la libllvmmc.la\
55
-		       libllvmcore.la libllvmsupport.la libllvmsystem.la
56
-
57
-libclamavcxx_la_LDFLAGS=-no-undefined
58
-#libclamavcxx_la_LDFLAGS = `$(LLVM_CONFIG) --ldflags --libs jit nativecodegen`
59
-libclamavcxx_la_SOURCES = bytecode2llvm.cpp
60 58
 
61
-LLVM_INCLUDES=-I$(top_srcdir)/llvm/include -I$(top_builddir)/llvm/include
62
-# TODO: _DEBUG should be defined for --enable-debug, and NDEBUG otherwise, but
63
-# keep it like this while I'm testing LLVM
64
-# TODO: HP-UX should have -D_REENTRANT -D_HPUX_SOURCE
65
-LLVM_DEFS=-D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_DEBUG -D_GNU_SOURCE
66 59
 LLVM_CXXFLAGS=-Woverloaded-virtual -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings
67 60
 
68 61
 EXTRA_DIST=$(top_srcdir)/llvm llvmdejagnu.sh
69 62
 
70
-libllvmsystem_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
71
-libllvmsystem_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
72 63
 libllvmsystem_la_LDFLAGS=-pthread
73 64
 libllvmsystem_la_LIBADD=-ldl
74
-libllvmsystem_la_SOURCES = \
75
-    llvm/lib/System/Alarm.cpp\
76
-    llvm/lib/System/Atomic.cpp\
77
-    llvm/lib/System/Disassembler.cpp\
78
-    llvm/lib/System/DynamicLibrary.cpp\
79
-    llvm/lib/System/Errno.cpp\
80
-    llvm/lib/System/Host.cpp\
81
-    llvm/lib/System/IncludeFile.cpp\
82
-    llvm/lib/System/Memory.cpp\
83
-    llvm/lib/System/Mutex.cpp\
84
-    llvm/lib/System/Path.cpp\
85
-    llvm/lib/System/Process.cpp\
86
-    llvm/lib/System/Program.cpp\
87
-    llvm/lib/System/RWMutex.cpp\
88
-    llvm/lib/System/Signals.cpp\
89
-    llvm/lib/System/ThreadLocal.cpp\
90
-    llvm/lib/System/Threading.cpp\
91
-    llvm/lib/System/TimeValue.cpp\
92
-    llvm/lib/System/Unix/Alarm.inc\
93
-    llvm/lib/System/Unix/Host.inc\
94
-    llvm/lib/System/Unix/Memory.inc\
95
-    llvm/lib/System/Unix/Mutex.inc\
96
-    llvm/lib/System/Unix/Path.inc\
97
-    llvm/lib/System/Unix/Process.inc\
98
-    llvm/lib/System/Unix/Program.inc\
99
-    llvm/lib/System/Unix/RWMutex.inc\
100
-    llvm/lib/System/Unix/Signals.inc\
101
-    llvm/lib/System/Unix/ThreadLocal.inc\
102
-    llvm/lib/System/Unix/TimeValue.inc\
103
-    llvm/lib/System/Win32/Alarm.inc\
104
-    llvm/lib/System/Win32/DynamicLibrary.inc\
105
-    llvm/lib/System/Win32/Host.inc\
106
-    llvm/lib/System/Win32/Memory.inc\
107
-    llvm/lib/System/Win32/Mutex.inc\
108
-    llvm/lib/System/Win32/Path.inc\
109
-    llvm/lib/System/Win32/Process.inc\
110
-    llvm/lib/System/Win32/Program.inc\
111
-    llvm/lib/System/Win32/RWMutex.inc\
112
-    llvm/lib/System/Win32/Signals.inc\
113
-    llvm/lib/System/Win32/ThreadLocal.inc\
114
-    llvm/lib/System/Win32/TimeValue.inc
115
-
116
-libllvmsupport_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
117
-libllvmsupport_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
65
+libllvmsystem_la_SOURCES=\
66
+	llvm/lib/System/Alarm.cpp\
67
+	llvm/lib/System/Atomic.cpp\
68
+	llvm/lib/System/Disassembler.cpp\
69
+	llvm/lib/System/DynamicLibrary.cpp\
70
+	llvm/lib/System/Errno.cpp\
71
+	llvm/lib/System/Host.cpp\
72
+	llvm/lib/System/IncludeFile.cpp\
73
+	llvm/lib/System/Memory.cpp\
74
+	llvm/lib/System/Mutex.cpp\
75
+	llvm/lib/System/Path.cpp\
76
+	llvm/lib/System/Process.cpp\
77
+	llvm/lib/System/Program.cpp\
78
+	llvm/lib/System/RWMutex.cpp\
79
+	llvm/lib/System/Signals.cpp\
80
+	llvm/lib/System/ThreadLocal.cpp\
81
+	llvm/lib/System/Threading.cpp\
82
+	llvm/lib/System/TimeValue.cpp
83
+
118 84
 libllvmsupport_la_SOURCES=\
119
-    llvm/lib/Support/APFloat.cpp\
120
-    llvm/lib/Support/APInt.cpp\
121
-    llvm/lib/Support/APSInt.cpp\
122
-    llvm/lib/Support/Allocator.cpp\
123
-    llvm/lib/Support/CommandLine.cpp\
124
-    llvm/lib/Support/ConstantRange.cpp\
125
-    llvm/lib/Support/Debug.cpp\
126
-    llvm/lib/Support/Dwarf.cpp\
127
-    llvm/lib/Support/ErrorHandling.cpp\
128
-    llvm/lib/Support/FileUtilities.cpp\
129
-    llvm/lib/Support/FoldingSet.cpp\
130
-    llvm/lib/Support/FormattedStream.cpp\
131
-    llvm/lib/Support/GraphWriter.cpp\
132
-    llvm/lib/Support/IsInf.cpp\
133
-    llvm/lib/Support/IsNAN.cpp\
134
-    llvm/lib/Support/ManagedStatic.cpp\
135
-    llvm/lib/Support/MemoryBuffer.cpp\
136
-    llvm/lib/Support/PluginLoader.cpp\
137
-    llvm/lib/Support/PrettyStackTrace.cpp\
138
-    llvm/lib/Support/SlowOperationInformer.cpp\
139
-    llvm/lib/Support/SmallPtrSet.cpp\
140
-    llvm/lib/Support/SourceMgr.cpp\
141
-    llvm/lib/Support/Statistic.cpp\
142
-    llvm/lib/Support/StringExtras.cpp\
143
-    llvm/lib/Support/StringMap.cpp\
144
-    llvm/lib/Support/StringPool.cpp\
145
-    llvm/lib/Support/StringRef.cpp\
146
-    llvm/lib/Support/SystemUtils.cpp\
147
-    llvm/lib/Support/TargetRegistry.cpp\
148
-    llvm/lib/Support/Timer.cpp\
149
-    llvm/lib/Support/Triple.cpp\
150
-    llvm/lib/Support/Twine.cpp\
151
-    llvm/lib/Support/raw_os_ostream.cpp\
152
-    llvm/lib/Support/raw_ostream.cpp\
153
-    llvm/lib/Support/Regex.cpp\
154
-    llvm/lib/Support/regcomp.c\
155
-    llvm/lib/Support/regerror.c\
156
-    llvm/lib/Support/regexec.c\
157
-    llvm/lib/Support/regfree.c\
158
-    llvm/lib/Support/regstrlcpy.c
159
-
160
-tblgen_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
85
+	llvm/lib/Support/APFloat.cpp\
86
+	llvm/lib/Support/APInt.cpp\
87
+	llvm/lib/Support/APSInt.cpp\
88
+	llvm/lib/Support/Allocator.cpp\
89
+	llvm/lib/Support/CommandLine.cpp\
90
+	llvm/lib/Support/ConstantRange.cpp\
91
+	llvm/lib/Support/Debug.cpp\
92
+	llvm/lib/Support/DeltaAlgorithm.cpp\
93
+	llvm/lib/Support/Dwarf.cpp\
94
+	llvm/lib/Support/ErrorHandling.cpp\
95
+	llvm/lib/Support/FileUtilities.cpp\
96
+	llvm/lib/Support/FoldingSet.cpp\
97
+	llvm/lib/Support/FormattedStream.cpp\
98
+	llvm/lib/Support/GraphWriter.cpp\
99
+	llvm/lib/Support/IsInf.cpp\
100
+	llvm/lib/Support/IsNAN.cpp\
101
+	llvm/lib/Support/ManagedStatic.cpp\
102
+	llvm/lib/Support/MemoryBuffer.cpp\
103
+	llvm/lib/Support/MemoryObject.cpp\
104
+	llvm/lib/Support/PluginLoader.cpp\
105
+	llvm/lib/Support/PrettyStackTrace.cpp\
106
+	llvm/lib/Support/Regex.cpp\
107
+	llvm/lib/Support/SlowOperationInformer.cpp\
108
+	llvm/lib/Support/SmallPtrSet.cpp\
109
+	llvm/lib/Support/SourceMgr.cpp\
110
+	llvm/lib/Support/Statistic.cpp\
111
+	llvm/lib/Support/StringExtras.cpp\
112
+	llvm/lib/Support/StringMap.cpp\
113
+	llvm/lib/Support/StringPool.cpp\
114
+	llvm/lib/Support/StringRef.cpp\
115
+	llvm/lib/Support/SystemUtils.cpp\
116
+	llvm/lib/Support/TargetRegistry.cpp\
117
+	llvm/lib/Support/Timer.cpp\
118
+	llvm/lib/Support/Triple.cpp\
119
+	llvm/lib/Support/Twine.cpp\
120
+	llvm/lib/Support/raw_os_ostream.cpp\
121
+	llvm/lib/Support/raw_ostream.cpp\
122
+	llvm/lib/Support/regcomp.c\
123
+	llvm/lib/Support/regerror.c\
124
+	llvm/lib/Support/regexec.c\
125
+	llvm/lib/Support/regfree.c\
126
+	llvm/lib/Support/regstrlcpy.c
127
+
161 128
 tblgen_CXXFLAGS=$(LLVM_CXXFLAGS)
162 129
 tblgen_LDADD=libllvmsupport.la libllvmsystem.la
163 130
 #TODO: if VERSIONSCRIPT
... ...
@@ -188,40 +161,6 @@ tblgen_SOURCES=\
188 188
   llvm/utils/TableGen/TableGen.cpp\
189 189
   llvm/utils/TableGen/TableGenBackend.cpp
190 190
 
191
-libllvmcore_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
192
-libllvmcore_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
193
-libllvmcore_la_SOURCES=\
194
- llvm/lib/VMCore/AsmWriter.cpp\
195
- llvm/lib/VMCore/Attributes.cpp\
196
- llvm/lib/VMCore/AutoUpgrade.cpp\
197
- llvm/lib/VMCore/BasicBlock.cpp\
198
- llvm/lib/VMCore/ConstantFold.cpp\
199
- llvm/lib/VMCore/Constants.cpp\
200
- llvm/lib/VMCore/Core.cpp\
201
- llvm/lib/VMCore/Dominators.cpp\
202
- llvm/lib/VMCore/Function.cpp\
203
- llvm/lib/VMCore/Globals.cpp\
204
- llvm/lib/VMCore/InlineAsm.cpp\
205
- llvm/lib/VMCore/Instruction.cpp\
206
- llvm/lib/VMCore/Instructions.cpp\
207
- llvm/lib/VMCore/IntrinsicInst.cpp\
208
- llvm/lib/VMCore/LLVMContext.cpp\
209
- llvm/lib/VMCore/LeakDetector.cpp\
210
- llvm/lib/VMCore/Mangler.cpp\
211
- llvm/lib/VMCore/Metadata.cpp\
212
- llvm/lib/VMCore/Module.cpp\
213
- llvm/lib/VMCore/ModuleProvider.cpp\
214
- llvm/lib/VMCore/Pass.cpp\
215
- llvm/lib/VMCore/PassManager.cpp\
216
- llvm/lib/VMCore/PrintModulePass.cpp\
217
- llvm/lib/VMCore/Type.cpp\
218
- llvm/lib/VMCore/TypeSymbolTable.cpp\
219
- llvm/lib/VMCore/Use.cpp\
220
- llvm/lib/VMCore/Value.cpp\
221
- llvm/lib/VMCore/ValueSymbolTable.cpp\
222
- llvm/lib/VMCore/ValueTypes.cpp\
223
- llvm/lib/VMCore/Verifier.cpp
224
-
225 191
 TBLGEN=$(top_builddir)/tblgen
226 192
 TBLGEN_V=$(AM_V_GEN)$(TBLGEN)
227 193
 TBLGEN_FLAGS=-I$(top_srcdir)/llvm/include -I$(top_srcdir)/llvm/lib/Target
... ...
@@ -269,28 +208,39 @@ X86GenCallingConv.inc: llvm/lib/Target/X86/X86.td $(TBLGEN)
269 269
 X86GenSubtarget.inc: llvm/lib/Target/X86/X86.td $(TBLGEN)
270 270
 	$(TBLGEN_V) $(TBLGEN_FLAGS_X86) -gen-subtarget -o $@ $<
271 271
 
272
-libllvmtargetx86_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/X86
272
+libllvmx86codegen_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/X86
273 273
 BUILT_SOURCES+=X86GenRegisterInfo.h.inc X86GenRegisterNames.inc X86GenRegisterInfo.inc X86GenInstrNames.inc X86GenInstrInfo.inc\
274 274
 	      X86GenAsmWriter.inc X86GenAsmWriter1.inc X86GenAsmMatcher.inc X86GenDAGISel.inc X86GenFastISel.inc X86GenCallingConv.inc\
275 275
 	      X86GenSubtarget.inc
276 276
 
277
-libllvmtargetx86_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
278
-libllvmtargetx86_la_SOURCES=\
279
-    llvm/lib/Target/X86/X86CodeEmitter.cpp\
280
-    llvm/lib/Target/X86/X86ELFWriterInfo.cpp\
281
-    llvm/lib/Target/X86/X86FloatingPoint.cpp\
282
-    llvm/lib/Target/X86/X86FloatingPointRegKill.cpp\
283
-    llvm/lib/Target/X86/X86ISelDAGToDAG.cpp\
284
-    llvm/lib/Target/X86/X86ISelLowering.cpp\
285
-    llvm/lib/Target/X86/X86InstrInfo.cpp\
286
-    llvm/lib/Target/X86/X86JITInfo.cpp\
287
-    llvm/lib/Target/X86/X86MCAsmInfo.cpp\
288
-    llvm/lib/Target/X86/X86RegisterInfo.cpp\
289
-    llvm/lib/Target/X86/X86Subtarget.cpp\
290
-    llvm/lib/Target/X86/X86TargetMachine.cpp\
291
-    llvm/lib/Target/X86/X86FastISel.cpp\
292
-    llvm/lib/Target/X86/X86TargetObjectFile.cpp\
293
-    llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
277
+libllvmx86codegen_la_SOURCES=\
278
+	llvm/lib/CodeGen/DeadMachineInstructionElim.cpp\
279
+	llvm/lib/CodeGen/MachineDominators.cpp\
280
+	llvm/lib/CodeGen/MachineLoopInfo.cpp\
281
+	llvm/lib/CodeGen/MachineModuleInfoImpls.cpp\
282
+	llvm/lib/CodeGen/SelectionDAG/FastISel.cpp\
283
+	llvm/lib/MC/MCAsmInfoCOFF.cpp\
284
+	llvm/lib/MC/MCCodeEmitter.cpp\
285
+	llvm/lib/MC/MCContext.cpp\
286
+	llvm/lib/MC/MCExpr.cpp\
287
+	llvm/lib/MC/MCInst.cpp\
288
+	llvm/lib/Target/TargetELFWriterInfo.cpp\
289
+	llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp\
290
+	llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp\
291
+	llvm/lib/Target/X86/X86CodeEmitter.cpp\
292
+	llvm/lib/Target/X86/X86ELFWriterInfo.cpp\
293
+	llvm/lib/Target/X86/X86FastISel.cpp\
294
+	llvm/lib/Target/X86/X86FloatingPoint.cpp\
295
+	llvm/lib/Target/X86/X86FloatingPointRegKill.cpp\
296
+	llvm/lib/Target/X86/X86ISelDAGToDAG.cpp\
297
+	llvm/lib/Target/X86/X86ISelLowering.cpp\
298
+	llvm/lib/Target/X86/X86InstrInfo.cpp\
299
+	llvm/lib/Target/X86/X86JITInfo.cpp\
300
+	llvm/lib/Target/X86/X86MCAsmInfo.cpp\
301
+	llvm/lib/Target/X86/X86RegisterInfo.cpp\
302
+	llvm/lib/Target/X86/X86Subtarget.cpp\
303
+	llvm/lib/Target/X86/X86TargetMachine.cpp\
304
+	llvm/lib/Target/X86/X86TargetObjectFile.cpp
294 305
 endif
295 306
 
296 307
 if BUILD_PPC
... ...
@@ -329,26 +279,28 @@ PPCGenCallingConv.inc: llvm/lib/Target/PowerPC/PPC.td $(TBLGEN)
329 329
 PPCGenSubtarget.inc: llvm/lib/Target/PowerPC/PPC.td $(TBLGEN)
330 330
 	$(TBLGEN_V) $(TBLGEN_FLAGS_PPC) -gen-subtarget -o $@ $<
331 331
 
332
-libllvmtargetppc_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/PowerPC
332
+libllvmpowerpccodegen_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/PowerPC
333 333
 BUILT_SOURCES += PPCGenInstrNames.inc PPCGenRegisterNames.inc PPCGenAsmWriter.inc PPCGenCodeEmitter.inc PPCGenRegisterInfo.h.inc PPCGenRegisterInfo.inc\
334 334
     PPCGenInstrInfo.inc PPCGenDAGISel.inc PPCGenCallingConv.inc PPCGenSubtarget.inc
335 335
 
336
-libllvmtargetppc_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
337
-libllvmtargetppc_la_SOURCES=\
338
-  llvm/lib/Target/PowerPC/PPCBranchSelector.cpp\
339
-  llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp\
340
- llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp\
341
- llvm/lib/Target/PowerPC/PPCInstrInfo.cpp\
342
- llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp\
343
- llvm/lib/Target/PowerPC/PPCISelLowering.cpp\
344
- llvm/lib/Target/PowerPC/PPCJITInfo.cpp\
345
- llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp\
346
- llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp\
347
- llvm/lib/Target/PowerPC/PPCPredicates.cpp\
348
- llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp\
349
- llvm/lib/Target/PowerPC/PPCSubtarget.cpp\
350
- llvm/lib/Target/PowerPC/PPCTargetMachine.cpp\
351
- llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
336
+libllvmpowerpccodegen_la_SOURCES=\
337
+	llvm/lib/CodeGen/ScheduleDAG.cpp\
338
+	llvm/lib/Target/PowerPC/PPCBranchSelector.cpp\
339
+	llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp\
340
+	llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp\
341
+	llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp\
342
+	llvm/lib/Target/PowerPC/PPCISelLowering.cpp\
343
+	llvm/lib/Target/PowerPC/PPCInstrInfo.cpp\
344
+	llvm/lib/Target/PowerPC/PPCJITInfo.cpp\
345
+	llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp\
346
+	llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp\
347
+	llvm/lib/Target/PowerPC/PPCPredicates.cpp\
348
+	llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp\
349
+	llvm/lib/Target/PowerPC/PPCSubtarget.cpp\
350
+	llvm/lib/Target/PowerPC/PPCTargetMachine.cpp\
351
+	llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp\
352
+	llvm/lib/Target/TargetMachOWriterInfo.cpp
353
+
352 354
 endif
353 355
 
354 356
 if BUILD_ARM
... ...
@@ -384,257 +336,141 @@ ARMGenCallingConv.inc: llvm/lib/Target/ARM/ARM.td $(TBLGEN)
384 384
 ARMGenSubtarget.inc: llvm/lib/Target/ARM/ARM.td $(TBLGEN)
385 385
 	$(TBLGEN_V) $(TBLGEN_FLAGS_ARM) -gen-subtarget -o $@ $<
386 386
 
387
-libllvmtargetarm_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/ARM
387
+libllvmarmcodegen_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/ARM
388 388
 BUILT_SOURCES += ARMGenRegisterInfo.h.inc ARMGenRegisterNames.inc ARMGenRegisterInfo.inc ARMGenInstrNames.inc ARMGenInstrInfo.inc ARMGenCodeEmitter.inc\
389 389
     ARMGenAsmWriter.inc ARMGenDAGISel.inc ARMGenCallingConv.inc ARMGenSubtarget.inc
390 390
 
391
-libllvmtargetarm_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
392
-libllvmtargetarm_la_SOURCES=\
393
-  llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp\
394
-  llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp\
395
-  llvm/lib/Target/ARM/ARMCodeEmitter.cpp\
396
- llvm/lib/Target/ARM/ARMConstantIslandPass.cpp\
397
- llvm/lib/Target/ARM/ARMConstantPoolValue.cpp\
398
- llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp\
399
- llvm/lib/Target/ARM/ARMInstrInfo.cpp\
400
- llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp\
401
- llvm/lib/Target/ARM/ARMISelLowering.cpp\
402
- llvm/lib/Target/ARM/ARMJITInfo.cpp\
403
- llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp\
404
- llvm/lib/Target/ARM/ARMMCAsmInfo.cpp\
405
- llvm/lib/Target/ARM/ARMRegisterInfo.cpp\
406
- llvm/lib/Target/ARM/ARMSubtarget.cpp\
407
- llvm/lib/Target/ARM/ARMTargetMachine.cpp\
408
- llvm/lib/Target/ARM/NEONMoveFix.cpp\
409
- llvm/lib/Target/ARM/NEONPreAllocPass.cpp\
410
- llvm/lib/Target/ARM/Thumb1InstrInfo.cpp\
411
- llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp\
412
- llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp\
413
- llvm/lib/Target/ARM/Thumb2InstrInfo.cpp\
414
- llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp\
415
- llvm/lib/Target/ARM/Thumb2SizeReduction.cpp\
416
- llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
391
+libllvmarmcodegen_la_SOURCES=\
392
+	llvm/lib/CodeGen/IfConversion.cpp\
393
+	llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp\
394
+	llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp\
395
+	llvm/lib/Target/ARM/ARMCodeEmitter.cpp\
396
+	llvm/lib/Target/ARM/ARMConstantIslandPass.cpp\
397
+	llvm/lib/Target/ARM/ARMConstantPoolValue.cpp\
398
+	llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp\
399
+	llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp\
400
+	llvm/lib/Target/ARM/ARMISelLowering.cpp\
401
+	llvm/lib/Target/ARM/ARMInstrInfo.cpp\
402
+	llvm/lib/Target/ARM/ARMJITInfo.cpp\
403
+	llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp\
404
+	llvm/lib/Target/ARM/ARMMCAsmInfo.cpp\
405
+	llvm/lib/Target/ARM/ARMRegisterInfo.cpp\
406
+	llvm/lib/Target/ARM/ARMSubtarget.cpp\
407
+	llvm/lib/Target/ARM/ARMTargetMachine.cpp\
408
+	llvm/lib/Target/ARM/NEONMoveFix.cpp\
409
+	llvm/lib/Target/ARM/NEONPreAllocPass.cpp\
410
+	llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp\
411
+	llvm/lib/Target/ARM/Thumb1InstrInfo.cpp\
412
+	llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp\
413
+	llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp\
414
+	llvm/lib/Target/ARM/Thumb2InstrInfo.cpp\
415
+	llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp\
416
+	llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
417 417
 endif
418 418
 
419 419
 # End of Targets
420 420
 
421
-libllvmtarget_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
422
-libllvmtarget_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
423
-libllvmtarget_la_SOURCES=\
424
-  llvm/lib/Target/SubtargetFeature.cpp\
425
-  llvm/lib/Target/Target.cpp\
426
-  llvm/lib/Target/TargetData.cpp\
427
-  llvm/lib/Target/TargetELFWriterInfo.cpp\
428
-  llvm/lib/Target/TargetFrameInfo.cpp\
429
-  llvm/lib/Target/TargetInstrInfo.cpp\
430
-  llvm/lib/Target/TargetIntrinsicInfo.cpp\
431
-  llvm/lib/Target/TargetLoweringObjectFile.cpp\
432
-  llvm/lib/Target/TargetMachOWriterInfo.cpp\
433
-  llvm/lib/Target/TargetMachine.cpp\
434
-  llvm/lib/Target/TargetRegisterInfo.cpp\
435
-  llvm/lib/Target/TargetSubtarget.cpp
436
-
437
-libllvmmc_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
438
-libllvmmc_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
439
-libllvmmc_la_SOURCES=\
440
-  llvm/lib/MC/MCAsmInfo.cpp\
441
-  llvm/lib/MC/MCAsmInfoCOFF.cpp\
442
- llvm/lib/MC/MCAsmInfoDarwin.cpp\
443
- llvm/lib/MC/MCAsmLexer.cpp\
444
- llvm/lib/MC/MCAsmParser.cpp\
445
- llvm/lib/MC/MCAsmStreamer.cpp\
446
- llvm/lib/MC/MCAssembler.cpp\
447
- llvm/lib/MC/MCCodeEmitter.cpp\
448
- llvm/lib/MC/MCContext.cpp\
449
- llvm/lib/MC/MCExpr.cpp\
450
- llvm/lib/MC/MCInst.cpp\
451
- llvm/lib/MC/MCMachOStreamer.cpp\
452
- llvm/lib/MC/MCNullStreamer.cpp\
453
- llvm/lib/MC/MCSection.cpp\
454
- llvm/lib/MC/MCSectionELF.cpp\
455
- llvm/lib/MC/MCSectionMachO.cpp\
456
- llvm/lib/MC/MCStreamer.cpp\
457
- llvm/lib/MC/MCSymbol.cpp\
458
- llvm/lib/MC/MCValue.cpp\
459
- llvm/lib/MC/TargetAsmParser.cpp
460
-
461
-libllvmsdag_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
462
-libllvmsdag_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
463
-libllvmsdag_la_SOURCES=\
464
-  llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp\
465
-  llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp\
466
-  llvm/lib/CodeGen/SelectionDAG/FastISel.cpp\
467
-  llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp\
468
-  llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp\
469
-  llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp\
470
-  llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp\
471
-  llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp\
472
-  llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp\
473
-  llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp\
474
-  llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp\
475
-  llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp\
476
-  llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp\
477
-  llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp\
478
-  llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp\
479
-  llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp\
480
-  llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp\
481
-  llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp\
482
-  llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp\
483
-  llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp\
484
-  llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp\
485
-  llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp\
486
-  llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp\
487
-  llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp\
488
-  llvm/lib/CodeGen/AsmPrinter/DwarfLabel.cpp\
489
-  llvm/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp\
490
-  llvm/lib/CodeGen/AsmPrinter/DIE.cpp\
491
-  llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
492
-
493
-libllvmipa_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
494
-libllvmipa_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
495
-libllvmipa_la_SOURCES=\
496
- llvm/lib/Analysis/AliasAnalysis.cpp\
497
- llvm/lib/Analysis/AliasSetTracker.cpp\
498
- llvm/lib/Analysis/BasicAliasAnalysis.cpp\
499
- llvm/lib/Analysis/CaptureTracking.cpp\
500
- llvm/lib/Analysis/ConstantFolding.cpp\
501
- llvm/lib/Analysis/DebugInfo.cpp\
502
- llvm/lib/Analysis/IVUsers.cpp\
503
- llvm/lib/Analysis/InstructionSimplify.cpp\
504
- llvm/lib/Analysis/LiveValues.cpp\
505
- llvm/lib/Analysis/LoopDependenceAnalysis.cpp\
506
- llvm/lib/Analysis/LoopInfo.cpp\
507
- llvm/lib/Analysis/LoopPass.cpp\
508
- llvm/lib/Analysis/MemoryBuiltins.cpp\
509
- llvm/lib/Analysis/MemoryDependenceAnalysis.cpp\
510
- llvm/lib/Analysis/PHITransAddr.cpp\
511
- llvm/lib/Analysis/ProfileInfo.cpp\
512
- llvm/lib/Analysis/ScalarEvolution.cpp\
513
- llvm/lib/Analysis/ScalarEvolutionExpander.cpp\
514
- llvm/lib/Analysis/ValueTracking.cpp\
515
- llvm/lib/Analysis/IPA/CallGraph.cpp
516
-
517
-libllvmcodegen_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
518
-libllvmcodegen_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
421
+libllvmjit_la_SOURCES=\
422
+	llvm/lib/CodeGen/ELFWriter.cpp\
423
+	llvm/lib/CodeGen/MachineFunction.cpp\
424
+	llvm/lib/CodeGen/MachineInstr.cpp\
425
+	llvm/lib/CodeGen/MachineModuleInfo.cpp\
426
+	llvm/lib/ExecutionEngine/ExecutionEngine.cpp\
427
+	llvm/lib/ExecutionEngine/JIT/Intercept.cpp\
428
+	llvm/lib/ExecutionEngine/JIT/JIT.cpp\
429
+	llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp\
430
+	llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp\
431
+	llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp\
432
+	llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp\
433
+	llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp\
434
+	llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp\
435
+	llvm/lib/MC/MCAsmInfo.cpp\
436
+	llvm/lib/Support/APFloat.cpp\
437
+	llvm/lib/Support/APInt.cpp\
438
+	llvm/lib/Support/Allocator.cpp\
439
+	llvm/lib/Support/CommandLine.cpp\
440
+	llvm/lib/Support/ConstantRange.cpp\
441
+	llvm/lib/Support/Debug.cpp\
442
+	llvm/lib/Support/Dwarf.cpp\
443
+	llvm/lib/Support/ErrorHandling.cpp\
444
+	llvm/lib/Support/FoldingSet.cpp\
445
+	llvm/lib/Support/FormattedStream.cpp\
446
+	llvm/lib/Support/ManagedStatic.cpp\
447
+	llvm/lib/Support/MemoryBuffer.cpp\
448
+	llvm/lib/Support/PrettyStackTrace.cpp\
449
+	llvm/lib/Support/SmallPtrSet.cpp\
450
+	llvm/lib/Support/Statistic.cpp\
451
+	llvm/lib/Support/StringExtras.cpp\
452
+	llvm/lib/Support/StringMap.cpp\
453
+	llvm/lib/Support/StringPool.cpp\
454
+	llvm/lib/Support/TargetRegistry.cpp\
455
+	llvm/lib/Support/Timer.cpp\
456
+	llvm/lib/Support/Triple.cpp\
457
+	llvm/lib/Support/Twine.cpp\
458
+	llvm/lib/Support/raw_ostream.cpp\
459
+	llvm/lib/Target/SubtargetFeature.cpp\
460
+	llvm/lib/Target/TargetData.cpp\
461
+	llvm/lib/Target/TargetMachine.cpp\
462
+	llvm/lib/VMCore/AsmWriter.cpp\
463
+	llvm/lib/VMCore/Attributes.cpp\
464
+	llvm/lib/VMCore/AutoUpgrade.cpp\
465
+	llvm/lib/VMCore/BasicBlock.cpp\
466
+	llvm/lib/VMCore/ConstantFold.cpp\
467
+	llvm/lib/VMCore/Constants.cpp\
468
+	llvm/lib/VMCore/Core.cpp\
469
+	llvm/lib/VMCore/Dominators.cpp\
470
+	llvm/lib/VMCore/Function.cpp\
471
+	llvm/lib/VMCore/Globals.cpp\
472
+	llvm/lib/VMCore/InlineAsm.cpp\
473
+	llvm/lib/VMCore/Instruction.cpp\
474
+	llvm/lib/VMCore/Instructions.cpp\
475
+	llvm/lib/VMCore/IntrinsicInst.cpp\
476
+	llvm/lib/VMCore/LLVMContext.cpp\
477
+	llvm/lib/VMCore/LeakDetector.cpp\
478
+	llvm/lib/VMCore/Mangler.cpp\
479
+	llvm/lib/VMCore/Metadata.cpp\
480
+	llvm/lib/VMCore/Module.cpp\
481
+	llvm/lib/VMCore/ModuleProvider.cpp\
482
+	llvm/lib/VMCore/Pass.cpp\
483
+	llvm/lib/VMCore/PassManager.cpp\
484
+	llvm/lib/VMCore/PrintModulePass.cpp\
485
+	llvm/lib/VMCore/Type.cpp\
486
+	llvm/lib/VMCore/TypeSymbolTable.cpp\
487
+	llvm/lib/VMCore/Use.cpp\
488
+	llvm/lib/VMCore/Value.cpp\
489
+	llvm/lib/VMCore/ValueSymbolTable.cpp\
490
+	llvm/lib/VMCore/ValueTypes.cpp\
491
+	llvm/lib/VMCore/Verifier.cpp
492
+
519 493
 libllvmcodegen_la_SOURCES=\
520
-  llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp\
521
-  llvm/lib/CodeGen/BranchFolding.cpp\
522
-  llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp\
523
-  llvm/lib/CodeGen/CodePlacementOpt.cpp\
524
-  llvm/lib/CodeGen/DeadMachineInstructionElim.cpp\
525
-  llvm/lib/CodeGen/DwarfEHPrepare.cpp\
526
-  llvm/lib/CodeGen/ELFCodeEmitter.cpp\
527
-  llvm/lib/CodeGen/ELFWriter.cpp\
528
-  llvm/lib/CodeGen/ExactHazardRecognizer.cpp\
529
-  llvm/lib/CodeGen/GCMetadata.cpp\
530
-  llvm/lib/CodeGen/GCMetadataPrinter.cpp\
531
-  llvm/lib/CodeGen/GCStrategy.cpp\
532
-  llvm/lib/CodeGen/IfConversion.cpp\
533
-  llvm/lib/CodeGen/IntrinsicLowering.cpp\
534
-  llvm/lib/CodeGen/LLVMTargetMachine.cpp\
535
-  llvm/lib/CodeGen/LatencyPriorityQueue.cpp\
536
-  llvm/lib/CodeGen/LiveInterval.cpp\
537
-  llvm/lib/CodeGen/LiveIntervalAnalysis.cpp\
538
-  llvm/lib/CodeGen/LiveStackAnalysis.cpp\
539
- llvm/lib/CodeGen/LiveVariables.cpp\
540
- llvm/lib/CodeGen/LowerSubregs.cpp\
541
- llvm/lib/CodeGen/MachineBasicBlock.cpp\
542
- llvm/lib/CodeGen/MachineDominators.cpp\
543
- llvm/lib/CodeGen/MachineFunction.cpp\
544
- llvm/lib/CodeGen/MachineFunctionAnalysis.cpp\
545
- llvm/lib/CodeGen/MachineFunctionPass.cpp\
546
- llvm/lib/CodeGen/MachineInstr.cpp\
547
- llvm/lib/CodeGen/MachineLICM.cpp\
548
- llvm/lib/CodeGen/MachineLoopInfo.cpp\
549
- llvm/lib/CodeGen/MachineModuleInfo.cpp\
550
- llvm/lib/CodeGen/MachineModuleInfoImpls.cpp\
551
- llvm/lib/CodeGen/MachinePassRegistry.cpp\
552
- llvm/lib/CodeGen/MachineRegisterInfo.cpp\
553
- llvm/lib/CodeGen/MachineSink.cpp\
554
- llvm/lib/CodeGen/MachineSSAUpdater.cpp\
555
- llvm/lib/CodeGen/MachineVerifier.cpp\
556
- llvm/lib/CodeGen/MaxStackAlignment.cpp\
557
- llvm/lib/CodeGen/ObjectCodeEmitter.cpp\
558
- llvm/lib/CodeGen/OcamlGC.cpp\
559
- llvm/lib/CodeGen/PHIElimination.cpp\
560
- llvm/lib/CodeGen/Passes.cpp\
561
- llvm/lib/CodeGen/PostRASchedulerList.cpp\
562
- llvm/lib/CodeGen/PreAllocSplitting.cpp\
563
- llvm/lib/CodeGen/ProcessImplicitDefs.cpp\
564
- llvm/lib/CodeGen/PrologEpilogInserter.cpp\
565
- llvm/lib/CodeGen/PseudoSourceValue.cpp\
566
- llvm/lib/CodeGen/RegAllocLinearScan.cpp\
567
- llvm/lib/CodeGen/RegAllocLocal.cpp\
568
- llvm/lib/CodeGen/RegAllocPBQP.cpp\
569
- llvm/lib/CodeGen/RegisterCoalescer.cpp\
570
- llvm/lib/CodeGen/RegisterScavenging.cpp\
571
- llvm/lib/CodeGen/ScheduleDAG.cpp\
572
- llvm/lib/CodeGen/ScheduleDAGEmit.cpp\
573
- llvm/lib/CodeGen/ScheduleDAGInstrs.cpp\
574
- llvm/lib/CodeGen/ScheduleDAGPrinter.cpp\
575
- llvm/lib/CodeGen/ShadowStackGC.cpp\
576
- llvm/lib/CodeGen/ShrinkWrapping.cpp\
577
- llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp\
578
- llvm/lib/CodeGen/SjLjEHPrepare.cpp\
579
- llvm/lib/CodeGen/SlotIndexes.cpp\
580
- llvm/lib/CodeGen/Spiller.cpp\
581
- llvm/lib/CodeGen/StackProtector.cpp\
582
- llvm/lib/CodeGen/StackSlotColoring.cpp\
583
- llvm/lib/CodeGen/StrongPHIElimination.cpp\
584
- llvm/lib/CodeGen/TailDuplication.cpp\
585
- llvm/lib/CodeGen/TargetInstrInfoImpl.cpp\
586
- llvm/lib/CodeGen/TwoAddressInstructionPass.cpp\
587
- llvm/lib/CodeGen/UnreachableBlockElim.cpp\
588
- llvm/lib/CodeGen/VirtRegMap.cpp\
589
- llvm/lib/CodeGen/VirtRegRewriter.cpp
590
-
591
-
592
-libllvmscalar_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
593
-libllvmscalar_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
594
-libllvmscalar_la_SOURCES=\
595
- llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp\
596
- llvm/lib/Transforms/Scalar/DCE.cpp\
597
- llvm/lib/Transforms/Scalar/GEPSplitter.cpp\
598
- llvm/lib/Transforms/Scalar/GVN.cpp\
599
- llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp\
600
- llvm/lib/Transforms/Scalar/ConstantProp.cpp\
601
- llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
602
-
603
-libllvmtransformutils_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
604
-libllvmtransformutils_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
605
-libllvmtransformutils_la_SOURCES=\
606
-  llvm/lib/Transforms/Utils/AddrModeMatcher.cpp\
607
-  llvm/lib/Transforms/Utils/BasicBlockUtils.cpp\
608
-  llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp\
609
-  llvm/lib/Transforms/Utils/DemoteRegToStack.cpp\
610
-  llvm/lib/Transforms/Utils/LCSSA.cpp\
611
-  llvm/lib/Transforms/Utils/Local.cpp\
612
-  llvm/lib/Transforms/Utils/LoopSimplify.cpp\
613
-  llvm/lib/Transforms/Utils/LowerInvoke.cpp\
614
-  llvm/lib/Transforms/Utils/LowerSwitch.cpp\
615
-  llvm/lib/Transforms/Utils/Mem2Reg.cpp\
616
-  llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp\
617
-  llvm/lib/Transforms/Utils/SimplifyCFG.cpp\
618
-  llvm/lib/Transforms/Utils/SSAUpdater.cpp\
619
-  llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
620
-
621
-libllvmexecutionengine_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
622
-libllvmexecutionengine_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
623
-libllvmexecutionengine_la_SOURCES=\
624
- llvm/lib/ExecutionEngine/ExecutionEngine.cpp\
625
- llvm/lib/ExecutionEngine/JIT/Intercept.cpp\
626
- llvm/lib/ExecutionEngine/JIT/JIT.cpp\
627
- llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp\
628
- llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp\
629
- llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp\
630
- llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp\
631
- llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
632
-# llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp
494
+	llvm/lib/CodeGen/LLVMTargetMachine.cpp\
495
+	llvm/lib/CodeGen/LiveVariables.cpp\
496
+	llvm/lib/CodeGen/MachineBasicBlock.cpp\
497
+	llvm/lib/CodeGen/MachineFunctionPass.cpp\
498
+	llvm/lib/CodeGen/MachineRegisterInfo.cpp\
499
+	llvm/lib/CodeGen/MaxStackAlignment.cpp\
500
+	llvm/lib/CodeGen/ObjectCodeEmitter.cpp\
501
+	llvm/lib/CodeGen/PseudoSourceValue.cpp\
502
+	llvm/lib/CodeGen/RegisterScavenging.cpp\
503
+	llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp\
504
+	llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp\
505
+	llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp\
506
+	llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp\
507
+	llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp\
508
+	llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp\
509
+	llvm/lib/CodeGen/TargetInstrInfoImpl.cpp\
510
+	llvm/lib/MC/MCAsmInfoDarwin.cpp\
511
+	llvm/lib/Support/StringRef.cpp\
512
+	llvm/lib/Target/TargetFrameInfo.cpp\
513
+	llvm/lib/Target/TargetInstrInfo.cpp\
514
+	llvm/lib/Target/TargetLoweringObjectFile.cpp\
515
+	llvm/lib/Target/TargetRegisterInfo.cpp\
516
+	llvm/lib/Target/TargetSubtarget.cpp
517
+
518
+
633 519
 
634 520
 # Used only by make check
635 521
 
636
-libllvmbitreader_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
637
-libllvmbitreader_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
638 522
 libllvmbitreader_la_SOURCES=\
639 523
  llvm/lib/Bitcode/Reader/BitReader.cpp\
640 524
  llvm/lib/Bitcode/Reader/BitcodeReader.cpp\
... ...
@@ -642,8 +478,6 @@ libllvmbitreader_la_SOURCES=\
642 642
  llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp\
643 643
  llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp
644 644
 
645
-libllvmbitwriter_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
646
-libllvmbitwriter_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
647 645
 libllvmbitwriter_la_SOURCES=\
648 646
  llvm/lib/Bitcode/Writer/BitWriter.cpp\
649 647
  llvm/lib/Bitcode/Writer/BitcodeWriter.cpp\
... ...
@@ -653,23 +487,17 @@ libllvmbitwriter_la_SOURCES=\
653 653
  llvm/lib/Bitcode/Writer/SerializeAPInt.cpp\
654 654
  llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
655 655
 
656
-libllvmasmparser_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS)
657
-libllvmasmparser_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
658 656
 libllvmasmparser_la_SOURCES=\
659 657
  llvm/lib/AsmParser/LLLexer.cpp\
660 658
  llvm/lib/AsmParser/LLParser.cpp\
661 659
  llvm/lib/AsmParser/Parser.cpp
662 660
 
663
-libllvminterpreter_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
664
-libllvminterpreter_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
665 661
 #TODO: configure check -Wno-missing-field-initializers -Wno-variadic-macros
666 662
 libllvminterpreter_la_SOURCES=\
667 663
     llvm/lib/ExecutionEngine/Interpreter/Execution.cpp\
668 664
     llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp\
669 665
     llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
670 666
 
671
-libgoogletest_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
672
-libgoogletest_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
673 667
 # -Wno-missing-field-initializers -Wno-variadic-macros
674 668
 libgoogletest_la_SOURCES=\
675 669
     llvm/utils/unittest/googletest/gtest-death-test.cc\
... ...
@@ -680,8 +508,6 @@ libgoogletest_la_SOURCES=\
680 680
     llvm/utils/unittest/googletest/gtest.cc\
681 681
     llvm/utils/unittest/UnitTestMain/TestMain.cpp
682 682
 
683
-llvmunittest_ADT_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
684
-llvmunittest_ADT_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
685 683
 #-Wno-variadic-macros
686 684
 llvmunittest_ADT_LDADD=libgoogletest.la libllvmcore.la libllvmsupport.la libllvmsystem.la
687 685
 llvmunittest_ADT_SOURCES=\
... ...
@@ -699,7 +525,6 @@ llvmunittest_ADT_SOURCES=\
699 699
     llvm/unittests/ADT/TwineTest.cpp
700 700
 
701 701
 llvmunittest_Support_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
702
-llvmunittest_Support_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
703 702
 #-Wno-variadic-macros
704 703
 llvmunittest_Support_LDADD=libgoogletest.la libllvmcore.la libllvmsupport.la libllvmsystem.la
705 704
 llvmunittest_Support_SOURCES=\
... ...
@@ -712,7 +537,6 @@ llvmunittest_Support_SOURCES=\
712 712
     llvm/unittests/Support/raw_ostream_test.cpp
713 713
 
714 714
 llvmunittest_VMCore_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
715
-llvmunittest_VMCore_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
716 715
 #-Wno-variadic-macros
717 716
 llvmunittest_VMCore_LDADD=libgoogletest.la libllvmtarget.la libllvmipa.la libllvmcore.la libllvmsupport.la libllvmsystem.la
718 717
 llvmunittest_VMCore_SOURCES=\
... ...
@@ -722,7 +546,6 @@ llvmunittest_VMCore_SOURCES=\
722 722
     llvm/unittests/VMCore/PassManagerTest.cpp
723 723
 
724 724
 llvmunittest_JIT_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
725
-llvmunittest_JIT_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
726 725
 #-Wno-variadic-macros
727 726
 llvmunittest_JIT_LDADD=libgoogletest.la libllvmasmparser.la $(libclamavcxx_la_LIBADD)
728 727
 llvmunittest_JIT_SOURCES=\
... ...
@@ -731,7 +554,6 @@ llvmunittest_JIT_SOURCES=\
731 731
     llvm/unittests/ExecutionEngine/JIT/JITTest.cpp
732 732
 
733 733
 llvmunittest_ExecutionEngine_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
734
-llvmunittest_ExecutionEngine_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
735 734
 #-Wno-variadic-macros
736 735
 llvmunittest_ExecutionEngine_LDADD=libgoogletest.la libllvminterpreter.la $(libclamavcxx_la_LIBADD)
737 736
 llvmunittest_ExecutionEngine_SOURCES=\
... ...
@@ -763,7 +585,6 @@ TESTS=llvmunittest_ADT llvmunittest_Support llvmunittest_VMCore llvmunittest_Exe
763 763
 
764 764
 libllvmasmprinter_la_CPPFLAGS=$(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/lib/Target/X86 \
765 765
 			      -I$(top_srcdir)/llvm/lib/Target/PowerPC -I$(top_srcdir)/llvm/lib/Target/ARM
766
-libllvmasmprinter_la_CXXFLAGS=$(LLVM_CXXFLAGS) -fno-exceptions
767 766
 libllvmasmprinter_la_SOURCES=\
768 767
     llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp\
769 768
     llvm/lib/CodeGen/ELFCodeEmitter.cpp\
... ...
@@ -51,20 +51,23 @@ POST_UNINSTALL = :
51 51
 build_triplet = @build@
52 52
 host_triplet = @host@
53 53
 target_triplet = @target@
54
-@BUILD_X86_TRUE@am__append_1 = libllvmtargetx86.la
55
-@BUILD_X86_TRUE@am__append_2 = libllvmtargetx86.la
56
-@BUILD_PPC_TRUE@am__append_3 = libllvmtargetppc.la
57
-@BUILD_PPC_TRUE@am__append_4 = libllvmtargetppc.la
58
-@BUILD_ARM_TRUE@am__append_5 = libllvmtargetarm.la
59
-@BUILD_ARM_TRUE@am__append_6 = libllvmtargetarm.la
60
-@BUILD_X86_TRUE@am__append_7 = X86GenRegisterInfo.h.inc X86GenRegisterNames.inc X86GenRegisterInfo.inc X86GenInstrNames.inc X86GenInstrInfo.inc\
54
+@BUILD_X86_TRUE@am__append_1 = libllvmx86codegen.la
55
+@BUILD_X86_TRUE@am__append_2 = libllvmx86codegen.la
56
+@BUILD_X86_TRUE@am__append_3 = libllvmx86codegen.la
57
+@BUILD_PPC_TRUE@am__append_4 = libllvmpowerpccodegen.la
58
+@BUILD_PPC_TRUE@am__append_5 = libllvmpowerpccodegen.la
59
+@BUILD_PPC_TRUE@am__append_6 = libllvmpowerpccodegen.la
60
+@BUILD_ARM_TRUE@am__append_7 = libllvmarmcodegen.la
61
+@BUILD_ARM_TRUE@am__append_8 = libllvmarmcodegen.la
62
+@BUILD_ARM_TRUE@am__append_9 = libllvmarmcodegen.la
63
+@BUILD_X86_TRUE@am__append_10 = X86GenRegisterInfo.h.inc X86GenRegisterNames.inc X86GenRegisterInfo.inc X86GenInstrNames.inc X86GenInstrInfo.inc\
61 64
 @BUILD_X86_TRUE@	      X86GenAsmWriter.inc X86GenAsmWriter1.inc X86GenAsmMatcher.inc X86GenDAGISel.inc X86GenFastISel.inc X86GenCallingConv.inc\
62 65
 @BUILD_X86_TRUE@	      X86GenSubtarget.inc
63 66
 
64
-@BUILD_PPC_TRUE@am__append_8 = PPCGenInstrNames.inc PPCGenRegisterNames.inc PPCGenAsmWriter.inc PPCGenCodeEmitter.inc PPCGenRegisterInfo.h.inc PPCGenRegisterInfo.inc\
67
+@BUILD_PPC_TRUE@am__append_11 = PPCGenInstrNames.inc PPCGenRegisterNames.inc PPCGenAsmWriter.inc PPCGenCodeEmitter.inc PPCGenRegisterInfo.h.inc PPCGenRegisterInfo.inc\
65 68
 @BUILD_PPC_TRUE@    PPCGenInstrInfo.inc PPCGenDAGISel.inc PPCGenCallingConv.inc PPCGenSubtarget.inc
66 69
 
67
-@BUILD_ARM_TRUE@am__append_9 = ARMGenRegisterInfo.h.inc ARMGenRegisterNames.inc ARMGenRegisterInfo.inc ARMGenInstrNames.inc ARMGenInstrInfo.inc ARMGenCodeEmitter.inc\
70
+@BUILD_ARM_TRUE@am__append_12 = ARMGenRegisterInfo.h.inc ARMGenRegisterNames.inc ARMGenRegisterInfo.inc ARMGenInstrNames.inc ARMGenInstrInfo.inc ARMGenCodeEmitter.inc\
68 71
 @BUILD_ARM_TRUE@    ARMGenAsmWriter.inc ARMGenDAGISel.inc ARMGenCallingConv.inc ARMGenSubtarget.inc
69 72
 
70 73
 check_PROGRAMS = count$(EXEEXT) not$(EXEEXT) lli$(EXEEXT) llc$(EXEEXT) \
... ...
@@ -76,15 +79,15 @@ TESTS = llvmunittest_ADT$(EXEEXT) llvmunittest_Support$(EXEEXT) \
76 76
 	llvmunittest_VMCore$(EXEEXT) \
77 77
 	llvmunittest_ExecutionEngine$(EXEEXT) \
78 78
 	llvmunittest_JIT$(EXEEXT)
79
-@BUILD_X86_TRUE@am__append_10 = llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp\
79
+@BUILD_X86_TRUE@am__append_13 = llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp\
80 80
 @BUILD_X86_TRUE@    llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp\
81 81
 @BUILD_X86_TRUE@    llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp\
82 82
 @BUILD_X86_TRUE@    llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp\
83 83
 @BUILD_X86_TRUE@    llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp\
84 84
 @BUILD_X86_TRUE@    llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
85 85
 
86
-@BUILD_PPC_TRUE@am__append_11 = llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
87
-@BUILD_ARM_TRUE@am__append_12 = llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp \
86
+@BUILD_PPC_TRUE@am__append_14 = llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
87
+@BUILD_ARM_TRUE@am__append_15 = llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp \
88 88
 @BUILD_ARM_TRUE@    llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp\
89 89
 @BUILD_ARM_TRUE@    llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp
90 90
 
... ...
@@ -109,11 +112,6 @@ CONFIG_HEADER = clamavcxx-config.h
109 109
 CONFIG_CLEAN_FILES =
110 110
 CONFIG_CLEAN_VPATH_FILES =
111 111
 LTLIBRARIES = $(noinst_LTLIBRARIES)
112
-libclamavcxx_la_DEPENDENCIES = $(am__append_1) $(am__append_3) \
113
-	$(am__append_5) libllvmsdag.la libllvmexecutionengine.la \
114
-	libllvmcodegen.la libllvmscalar.la libllvmtransformutils.la \
115
-	libllvmipa.la libllvmtarget.la libllvmmc.la libllvmcore.la \
116
-	libllvmsupport.la libllvmsystem.la
117 112
 am_libclamavcxx_la_OBJECTS = libclamavcxx_la-bytecode2llvm.lo
118 113
 libclamavcxx_la_OBJECTS = $(am_libclamavcxx_la_OBJECTS)
119 114
 AM_V_lt = $(am__v_lt_$(V))
... ...
@@ -121,28 +119,71 @@ am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
121 121
 am__v_lt_0 = --silent
122 122
 libclamavcxx_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
123 123
 	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
124
-	$(AM_CXXFLAGS) $(CXXFLAGS) $(libclamavcxx_la_LDFLAGS) \
125
-	$(LDFLAGS) -o $@
124
+	$(libclamavcxx_la_CXXFLAGS) $(CXXFLAGS) \
125
+	$(libclamavcxx_la_LDFLAGS) $(LDFLAGS) -o $@
126 126
 libgoogletest_la_LIBADD =
127
-am_libgoogletest_la_OBJECTS = libgoogletest_la-gtest-death-test.lo \
128
-	libgoogletest_la-gtest-filepath.lo \
129
-	libgoogletest_la-gtest-port.lo \
130
-	libgoogletest_la-gtest-test-part.lo \
131
-	libgoogletest_la-gtest-typed-test.lo libgoogletest_la-gtest.lo \
132
-	libgoogletest_la-TestMain.lo
127
+am_libgoogletest_la_OBJECTS = gtest-death-test.lo gtest-filepath.lo \
128
+	gtest-port.lo gtest-test-part.lo gtest-typed-test.lo gtest.lo \
129
+	TestMain.lo
133 130
 libgoogletest_la_OBJECTS = $(am_libgoogletest_la_OBJECTS)
134
-libgoogletest_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
135
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
136
-	$(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
137
-	$(LDFLAGS) -o $@
131
+libllvmarmcodegen_la_LIBADD =
132
+am__libllvmarmcodegen_la_SOURCES_DIST =  \
133
+	llvm/lib/CodeGen/IfConversion.cpp \
134
+	llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp \
135
+	llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp \
136
+	llvm/lib/Target/ARM/ARMCodeEmitter.cpp \
137
+	llvm/lib/Target/ARM/ARMConstantIslandPass.cpp \
138
+	llvm/lib/Target/ARM/ARMConstantPoolValue.cpp \
139
+	llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp \
140
+	llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp \
141
+	llvm/lib/Target/ARM/ARMISelLowering.cpp \
142
+	llvm/lib/Target/ARM/ARMInstrInfo.cpp \
143
+	llvm/lib/Target/ARM/ARMJITInfo.cpp \
144
+	llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp \
145
+	llvm/lib/Target/ARM/ARMMCAsmInfo.cpp \
146
+	llvm/lib/Target/ARM/ARMRegisterInfo.cpp \
147
+	llvm/lib/Target/ARM/ARMSubtarget.cpp \
148
+	llvm/lib/Target/ARM/ARMTargetMachine.cpp \
149
+	llvm/lib/Target/ARM/NEONMoveFix.cpp \
150
+	llvm/lib/Target/ARM/NEONPreAllocPass.cpp \
151
+	llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp \
152
+	llvm/lib/Target/ARM/Thumb1InstrInfo.cpp \
153
+	llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp \
154
+	llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp \
155
+	llvm/lib/Target/ARM/Thumb2InstrInfo.cpp \
156
+	llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp \
157
+	llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
158
+@BUILD_ARM_TRUE@am_libllvmarmcodegen_la_OBJECTS =  \
159
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-IfConversion.lo \
160
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMBaseInstrInfo.lo \
161
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMBaseRegisterInfo.lo \
162
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMCodeEmitter.lo \
163
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMConstantIslandPass.lo \
164
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMConstantPoolValue.lo \
165
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMExpandPseudoInsts.lo \
166
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMISelDAGToDAG.lo \
167
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMISelLowering.lo \
168
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMInstrInfo.lo \
169
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMJITInfo.lo \
170
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMLoadStoreOptimizer.lo \
171
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMMCAsmInfo.lo \
172
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMRegisterInfo.lo \
173
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMSubtarget.lo \
174
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMTargetMachine.lo \
175
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-NEONMoveFix.lo \
176
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-NEONPreAllocPass.lo \
177
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-ARMTargetInfo.lo \
178
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-Thumb1InstrInfo.lo \
179
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-Thumb1RegisterInfo.lo \
180
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-Thumb2ITBlockPass.lo \
181
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-Thumb2InstrInfo.lo \
182
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-Thumb2RegisterInfo.lo \
183
+@BUILD_ARM_TRUE@	libllvmarmcodegen_la-Thumb2SizeReduction.lo
184
+libllvmarmcodegen_la_OBJECTS = $(am_libllvmarmcodegen_la_OBJECTS)
185
+@BUILD_ARM_TRUE@am_libllvmarmcodegen_la_rpath =
138 186
 libllvmasmparser_la_LIBADD =
139
-am_libllvmasmparser_la_OBJECTS = libllvmasmparser_la-LLLexer.lo \
140
-	libllvmasmparser_la-LLParser.lo libllvmasmparser_la-Parser.lo
187
+am_libllvmasmparser_la_OBJECTS = LLLexer.lo LLParser.lo Parser.lo
141 188
 libllvmasmparser_la_OBJECTS = $(am_libllvmasmparser_la_OBJECTS)
142
-libllvmasmparser_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
143
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
144
-	$(libllvmasmparser_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
145
-	$(LDFLAGS) -o $@
146 189
 libllvmasmprinter_la_LIBADD =
147 190
 am__libllvmasmprinter_la_SOURCES_DIST =  \
148 191
 	llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp \
... ...
@@ -177,397 +218,128 @@ am_libllvmasmprinter_la_OBJECTS =  \
177 177
 	libllvmasmprinter_la-MachOWriter.lo $(am__objects_1) \
178 178
 	$(am__objects_2) $(am__objects_3)
179 179
 libllvmasmprinter_la_OBJECTS = $(am_libllvmasmprinter_la_OBJECTS)
180
-libllvmasmprinter_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
181
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
182
-	$(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
183
-	$(LDFLAGS) -o $@
184 180
 libllvmbitreader_la_LIBADD =
185
-am_libllvmbitreader_la_OBJECTS = libllvmbitreader_la-BitReader.lo \
186
-	libllvmbitreader_la-BitcodeReader.lo \
187
-	libllvmbitreader_la-Deserialize.lo \
188
-	libllvmbitreader_la-DeserializeAPFloat.lo \
189
-	libllvmbitreader_la-DeserializeAPInt.lo
181
+am_libllvmbitreader_la_OBJECTS = BitReader.lo BitcodeReader.lo \
182
+	Deserialize.lo DeserializeAPFloat.lo DeserializeAPInt.lo
190 183
 libllvmbitreader_la_OBJECTS = $(am_libllvmbitreader_la_OBJECTS)
191
-libllvmbitreader_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
192
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
193
-	$(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
194
-	$(LDFLAGS) -o $@
195 184
 libllvmbitwriter_la_LIBADD =
196
-am_libllvmbitwriter_la_OBJECTS = libllvmbitwriter_la-BitWriter.lo \
197
-	libllvmbitwriter_la-BitcodeWriter.lo \
198
-	libllvmbitwriter_la-BitcodeWriterPass.lo \
199
-	libllvmbitwriter_la-Serialize.lo \
200
-	libllvmbitwriter_la-SerializeAPFloat.lo \
201
-	libllvmbitwriter_la-SerializeAPInt.lo \
202
-	libllvmbitwriter_la-ValueEnumerator.lo
185
+am_libllvmbitwriter_la_OBJECTS = BitWriter.lo BitcodeWriter.lo \
186
+	BitcodeWriterPass.lo Serialize.lo SerializeAPFloat.lo \
187
+	SerializeAPInt.lo ValueEnumerator.lo
203 188
 libllvmbitwriter_la_OBJECTS = $(am_libllvmbitwriter_la_OBJECTS)
204
-libllvmbitwriter_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
205
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
206
-	$(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
207
-	$(LDFLAGS) -o $@
208 189
 libllvmcodegen_la_LIBADD =
209
-am_libllvmcodegen_la_OBJECTS =  \
210
-	libllvmcodegen_la-AggressiveAntiDepBreaker.lo \
211
-	libllvmcodegen_la-BranchFolding.lo \
212
-	libllvmcodegen_la-CriticalAntiDepBreaker.lo \
213
-	libllvmcodegen_la-CodePlacementOpt.lo \
214
-	libllvmcodegen_la-DeadMachineInstructionElim.lo \
215
-	libllvmcodegen_la-DwarfEHPrepare.lo \
216
-	libllvmcodegen_la-ELFCodeEmitter.lo \
217
-	libllvmcodegen_la-ELFWriter.lo \
218
-	libllvmcodegen_la-ExactHazardRecognizer.lo \
219
-	libllvmcodegen_la-GCMetadata.lo \
220
-	libllvmcodegen_la-GCMetadataPrinter.lo \
221
-	libllvmcodegen_la-GCStrategy.lo \
222
-	libllvmcodegen_la-IfConversion.lo \
223
-	libllvmcodegen_la-IntrinsicLowering.lo \
224
-	libllvmcodegen_la-LLVMTargetMachine.lo \
225
-	libllvmcodegen_la-LatencyPriorityQueue.lo \
226
-	libllvmcodegen_la-LiveInterval.lo \
227
-	libllvmcodegen_la-LiveIntervalAnalysis.lo \
228
-	libllvmcodegen_la-LiveStackAnalysis.lo \
229
-	libllvmcodegen_la-LiveVariables.lo \
230
-	libllvmcodegen_la-LowerSubregs.lo \
231
-	libllvmcodegen_la-MachineBasicBlock.lo \
232
-	libllvmcodegen_la-MachineDominators.lo \
233
-	libllvmcodegen_la-MachineFunction.lo \
234
-	libllvmcodegen_la-MachineFunctionAnalysis.lo \
235
-	libllvmcodegen_la-MachineFunctionPass.lo \
236
-	libllvmcodegen_la-MachineInstr.lo \
237
-	libllvmcodegen_la-MachineLICM.lo \
238
-	libllvmcodegen_la-MachineLoopInfo.lo \
239
-	libllvmcodegen_la-MachineModuleInfo.lo \
240
-	libllvmcodegen_la-MachineModuleInfoImpls.lo \
241
-	libllvmcodegen_la-MachinePassRegistry.lo \
242
-	libllvmcodegen_la-MachineRegisterInfo.lo \
243
-	libllvmcodegen_la-MachineSink.lo \
244
-	libllvmcodegen_la-MachineSSAUpdater.lo \
245
-	libllvmcodegen_la-MachineVerifier.lo \
246
-	libllvmcodegen_la-MaxStackAlignment.lo \
247
-	libllvmcodegen_la-ObjectCodeEmitter.lo \
248
-	libllvmcodegen_la-OcamlGC.lo \
249
-	libllvmcodegen_la-PHIElimination.lo \
250
-	libllvmcodegen_la-Passes.lo \
251
-	libllvmcodegen_la-PostRASchedulerList.lo \
252
-	libllvmcodegen_la-PreAllocSplitting.lo \
253
-	libllvmcodegen_la-ProcessImplicitDefs.lo \
254
-	libllvmcodegen_la-PrologEpilogInserter.lo \
255
-	libllvmcodegen_la-PseudoSourceValue.lo \
256
-	libllvmcodegen_la-RegAllocLinearScan.lo \
257
-	libllvmcodegen_la-RegAllocLocal.lo \
258
-	libllvmcodegen_la-RegAllocPBQP.lo \
259
-	libllvmcodegen_la-RegisterCoalescer.lo \
260
-	libllvmcodegen_la-RegisterScavenging.lo \
261
-	libllvmcodegen_la-ScheduleDAG.lo \
262
-	libllvmcodegen_la-ScheduleDAGEmit.lo \
263
-	libllvmcodegen_la-ScheduleDAGInstrs.lo \
264
-	libllvmcodegen_la-ScheduleDAGPrinter.lo \
265
-	libllvmcodegen_la-ShadowStackGC.lo \
266
-	libllvmcodegen_la-ShrinkWrapping.lo \
267
-	libllvmcodegen_la-SimpleRegisterCoalescing.lo \
268
-	libllvmcodegen_la-SjLjEHPrepare.lo \
269
-	libllvmcodegen_la-SlotIndexes.lo libllvmcodegen_la-Spiller.lo \
270
-	libllvmcodegen_la-StackProtector.lo \
271
-	libllvmcodegen_la-StackSlotColoring.lo \
272
-	libllvmcodegen_la-StrongPHIElimination.lo \
273
-	libllvmcodegen_la-TailDuplication.lo \
274
-	libllvmcodegen_la-TargetInstrInfoImpl.lo \
275
-	libllvmcodegen_la-TwoAddressInstructionPass.lo \
276
-	libllvmcodegen_la-UnreachableBlockElim.lo \
277
-	libllvmcodegen_la-VirtRegMap.lo \
278
-	libllvmcodegen_la-VirtRegRewriter.lo
190
+am_libllvmcodegen_la_OBJECTS = LLVMTargetMachine.lo LiveVariables.lo \
191
+	MachineBasicBlock.lo MachineFunctionPass.lo \
192
+	MachineRegisterInfo.lo MaxStackAlignment.lo \
193
+	ObjectCodeEmitter.lo PseudoSourceValue.lo \
194
+	RegisterScavenging.lo CallingConvLower.lo DAGCombiner.lo \
195
+	SelectionDAG.lo SelectionDAGBuilder.lo SelectionDAGISel.lo \
196
+	TargetLowering.lo TargetInstrInfoImpl.lo MCAsmInfoDarwin.lo \
197
+	StringRef.lo TargetFrameInfo.lo TargetInstrInfo.lo \
198
+	TargetLoweringObjectFile.lo TargetRegisterInfo.lo \
199
+	TargetSubtarget.lo
279 200
 libllvmcodegen_la_OBJECTS = $(am_libllvmcodegen_la_OBJECTS)
280
-libllvmcodegen_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
281
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
282
-	$(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
283
-	$(LDFLAGS) -o $@
284
-libllvmcore_la_LIBADD =
285
-am_libllvmcore_la_OBJECTS = libllvmcore_la-AsmWriter.lo \
286
-	libllvmcore_la-Attributes.lo libllvmcore_la-AutoUpgrade.lo \
287
-	libllvmcore_la-BasicBlock.lo libllvmcore_la-ConstantFold.lo \
288
-	libllvmcore_la-Constants.lo libllvmcore_la-Core.lo \
289
-	libllvmcore_la-Dominators.lo libllvmcore_la-Function.lo \
290
-	libllvmcore_la-Globals.lo libllvmcore_la-InlineAsm.lo \
291
-	libllvmcore_la-Instruction.lo libllvmcore_la-Instructions.lo \
292
-	libllvmcore_la-IntrinsicInst.lo libllvmcore_la-LLVMContext.lo \
293
-	libllvmcore_la-LeakDetector.lo libllvmcore_la-Mangler.lo \
294
-	libllvmcore_la-Metadata.lo libllvmcore_la-Module.lo \
295
-	libllvmcore_la-ModuleProvider.lo libllvmcore_la-Pass.lo \
296
-	libllvmcore_la-PassManager.lo \
297
-	libllvmcore_la-PrintModulePass.lo libllvmcore_la-Type.lo \
298
-	libllvmcore_la-TypeSymbolTable.lo libllvmcore_la-Use.lo \
299
-	libllvmcore_la-Value.lo libllvmcore_la-ValueSymbolTable.lo \
300
-	libllvmcore_la-ValueTypes.lo libllvmcore_la-Verifier.lo
301
-libllvmcore_la_OBJECTS = $(am_libllvmcore_la_OBJECTS)
302
-libllvmcore_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
303
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
304
-	$(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
305
-	$(LDFLAGS) -o $@
306
-libllvmexecutionengine_la_LIBADD =
307
-am_libllvmexecutionengine_la_OBJECTS =  \
308
-	libllvmexecutionengine_la-ExecutionEngine.lo \
309
-	libllvmexecutionengine_la-Intercept.lo \
310
-	libllvmexecutionengine_la-JIT.lo \
311
-	libllvmexecutionengine_la-JITDebugRegisterer.lo \
312
-	libllvmexecutionengine_la-JITDwarfEmitter.lo \
313
-	libllvmexecutionengine_la-JITEmitter.lo \
314
-	libllvmexecutionengine_la-JITMemoryManager.lo \
315
-	libllvmexecutionengine_la-TargetSelect.lo
316
-libllvmexecutionengine_la_OBJECTS =  \
317
-	$(am_libllvmexecutionengine_la_OBJECTS)
318
-libllvmexecutionengine_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
319
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
320
-	$(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) \
321
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
322 201
 libllvminterpreter_la_LIBADD =
323
-am_libllvminterpreter_la_OBJECTS = libllvminterpreter_la-Execution.lo \
324
-	libllvminterpreter_la-ExternalFunctions.lo \
325
-	libllvminterpreter_la-Interpreter.lo
202
+am_libllvminterpreter_la_OBJECTS = Execution.lo ExternalFunctions.lo \
203
+	Interpreter.lo
326 204
 libllvminterpreter_la_OBJECTS = $(am_libllvminterpreter_la_OBJECTS)
327
-libllvminterpreter_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
328
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
329
-	$(libllvminterpreter_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
330
-	$(LDFLAGS) -o $@
331
-libllvmipa_la_LIBADD =
332
-am_libllvmipa_la_OBJECTS = libllvmipa_la-AliasAnalysis.lo \
333
-	libllvmipa_la-AliasSetTracker.lo \
334
-	libllvmipa_la-BasicAliasAnalysis.lo \
335
-	libllvmipa_la-CaptureTracking.lo \
336
-	libllvmipa_la-ConstantFolding.lo libllvmipa_la-DebugInfo.lo \
337
-	libllvmipa_la-IVUsers.lo libllvmipa_la-InstructionSimplify.lo \
338
-	libllvmipa_la-LiveValues.lo \
339
-	libllvmipa_la-LoopDependenceAnalysis.lo \
340
-	libllvmipa_la-LoopInfo.lo libllvmipa_la-LoopPass.lo \
341
-	libllvmipa_la-MemoryBuiltins.lo \
342
-	libllvmipa_la-MemoryDependenceAnalysis.lo \
343
-	libllvmipa_la-PHITransAddr.lo libllvmipa_la-ProfileInfo.lo \
344
-	libllvmipa_la-ScalarEvolution.lo \
345
-	libllvmipa_la-ScalarEvolutionExpander.lo \
346
-	libllvmipa_la-ValueTracking.lo libllvmipa_la-CallGraph.lo
347
-libllvmipa_la_OBJECTS = $(am_libllvmipa_la_OBJECTS)
348
-libllvmipa_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
349
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
350
-	$(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
351
-	-o $@
352
-libllvmmc_la_LIBADD =
353
-am_libllvmmc_la_OBJECTS = libllvmmc_la-MCAsmInfo.lo \
354
-	libllvmmc_la-MCAsmInfoCOFF.lo libllvmmc_la-MCAsmInfoDarwin.lo \
355
-	libllvmmc_la-MCAsmLexer.lo libllvmmc_la-MCAsmParser.lo \
356
-	libllvmmc_la-MCAsmStreamer.lo libllvmmc_la-MCAssembler.lo \
357
-	libllvmmc_la-MCCodeEmitter.lo libllvmmc_la-MCContext.lo \
358
-	libllvmmc_la-MCExpr.lo libllvmmc_la-MCInst.lo \
359
-	libllvmmc_la-MCMachOStreamer.lo libllvmmc_la-MCNullStreamer.lo \
360
-	libllvmmc_la-MCSection.lo libllvmmc_la-MCSectionELF.lo \
361
-	libllvmmc_la-MCSectionMachO.lo libllvmmc_la-MCStreamer.lo \
362
-	libllvmmc_la-MCSymbol.lo libllvmmc_la-MCValue.lo \
363
-	libllvmmc_la-TargetAsmParser.lo
364
-libllvmmc_la_OBJECTS = $(am_libllvmmc_la_OBJECTS)
365
-libllvmmc_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
366
-	$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(libllvmmc_la_CXXFLAGS) \
367
-	$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
368
-libllvmscalar_la_LIBADD =
369
-am_libllvmscalar_la_OBJECTS = libllvmscalar_la-CodeGenPrepare.lo \
370
-	libllvmscalar_la-DCE.lo libllvmscalar_la-GEPSplitter.lo \
371
-	libllvmscalar_la-GVN.lo libllvmscalar_la-LoopStrengthReduce.lo \
372
-	libllvmscalar_la-ConstantProp.lo \
373
-	libllvmscalar_la-SimplifyCFGPass.lo
374
-libllvmscalar_la_OBJECTS = $(am_libllvmscalar_la_OBJECTS)
375
-libllvmscalar_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
376
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
377
-	$(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
378
-	$(LDFLAGS) -o $@
379
-libllvmsdag_la_LIBADD =
380
-am_libllvmsdag_la_OBJECTS = libllvmsdag_la-CallingConvLower.lo \
381
-	libllvmsdag_la-DAGCombiner.lo libllvmsdag_la-FastISel.lo \
382
-	libllvmsdag_la-FunctionLoweringInfo.lo \
383
-	libllvmsdag_la-InstrEmitter.lo libllvmsdag_la-LegalizeDAG.lo \
384
-	libllvmsdag_la-LegalizeFloatTypes.lo \
385
-	libllvmsdag_la-LegalizeIntegerTypes.lo \
386
-	libllvmsdag_la-LegalizeTypes.lo \
387
-	libllvmsdag_la-LegalizeTypesGeneric.lo \
388
-	libllvmsdag_la-LegalizeVectorOps.lo \
389
-	libllvmsdag_la-LegalizeVectorTypes.lo \
390
-	libllvmsdag_la-ScheduleDAGFast.lo \
391
-	libllvmsdag_la-ScheduleDAGList.lo \
392
-	libllvmsdag_la-ScheduleDAGRRList.lo \
393
-	libllvmsdag_la-ScheduleDAGSDNodes.lo \
394
-	libllvmsdag_la-SelectionDAG.lo \
395
-	libllvmsdag_la-SelectionDAGBuilder.lo \
396
-	libllvmsdag_la-SelectionDAGISel.lo \
397
-	libllvmsdag_la-SelectionDAGPrinter.lo \
398
-	libllvmsdag_la-TargetLowering.lo libllvmsdag_la-DwarfWriter.lo \
399
-	libllvmsdag_la-DwarfDebug.lo libllvmsdag_la-DwarfException.lo \
400
-	libllvmsdag_la-DwarfLabel.lo libllvmsdag_la-DwarfPrinter.lo \
401
-	libllvmsdag_la-DIE.lo libllvmsdag_la-AsmPrinter.lo
402
-libllvmsdag_la_OBJECTS = $(am_libllvmsdag_la_OBJECTS)
403
-libllvmsdag_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
404
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
405
-	$(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
406
-	$(LDFLAGS) -o $@
407
-libllvmsupport_la_LIBADD =
408
-am_libllvmsupport_la_OBJECTS = libllvmsupport_la-APFloat.lo \
409
-	libllvmsupport_la-APInt.lo libllvmsupport_la-APSInt.lo \
410
-	libllvmsupport_la-Allocator.lo \
411
-	libllvmsupport_la-CommandLine.lo \
412
-	libllvmsupport_la-ConstantRange.lo libllvmsupport_la-Debug.lo \
413
-	libllvmsupport_la-Dwarf.lo libllvmsupport_la-ErrorHandling.lo \
414
-	libllvmsupport_la-FileUtilities.lo \
415
-	libllvmsupport_la-FoldingSet.lo \
416
-	libllvmsupport_la-FormattedStream.lo \
417
-	libllvmsupport_la-GraphWriter.lo libllvmsupport_la-IsInf.lo \
418
-	libllvmsupport_la-IsNAN.lo libllvmsupport_la-ManagedStatic.lo \
419
-	libllvmsupport_la-MemoryBuffer.lo \
420
-	libllvmsupport_la-PluginLoader.lo \
421
-	libllvmsupport_la-PrettyStackTrace.lo \
422
-	libllvmsupport_la-SlowOperationInformer.lo \
423
-	libllvmsupport_la-SmallPtrSet.lo \
424
-	libllvmsupport_la-SourceMgr.lo libllvmsupport_la-Statistic.lo \
425
-	libllvmsupport_la-StringExtras.lo \
426
-	libllvmsupport_la-StringMap.lo libllvmsupport_la-StringPool.lo \
427
-	libllvmsupport_la-StringRef.lo \
428
-	libllvmsupport_la-SystemUtils.lo \
429
-	libllvmsupport_la-TargetRegistry.lo libllvmsupport_la-Timer.lo \
430
-	libllvmsupport_la-Triple.lo libllvmsupport_la-Twine.lo \
431
-	libllvmsupport_la-raw_os_ostream.lo \
432
-	libllvmsupport_la-raw_ostream.lo libllvmsupport_la-Regex.lo \
433
-	libllvmsupport_la-regcomp.lo libllvmsupport_la-regerror.lo \
434
-	libllvmsupport_la-regexec.lo libllvmsupport_la-regfree.lo \
435
-	libllvmsupport_la-regstrlcpy.lo
436
-libllvmsupport_la_OBJECTS = $(am_libllvmsupport_la_OBJECTS)
437
-libllvmsupport_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
438
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
439
-	$(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
440
-	$(LDFLAGS) -o $@
441
-libllvmsystem_la_DEPENDENCIES =
442
-am_libllvmsystem_la_OBJECTS = libllvmsystem_la-Alarm.lo \
443
-	libllvmsystem_la-Atomic.lo libllvmsystem_la-Disassembler.lo \
444
-	libllvmsystem_la-DynamicLibrary.lo libllvmsystem_la-Errno.lo \
445
-	libllvmsystem_la-Host.lo libllvmsystem_la-IncludeFile.lo \
446
-	libllvmsystem_la-Memory.lo libllvmsystem_la-Mutex.lo \
447
-	libllvmsystem_la-Path.lo libllvmsystem_la-Process.lo \
448
-	libllvmsystem_la-Program.lo libllvmsystem_la-RWMutex.lo \
449
-	libllvmsystem_la-Signals.lo libllvmsystem_la-ThreadLocal.lo \
450
-	libllvmsystem_la-Threading.lo libllvmsystem_la-TimeValue.lo
451
-libllvmsystem_la_OBJECTS = $(am_libllvmsystem_la_OBJECTS)
452
-libllvmsystem_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
453
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
454
-	$(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) \
455
-	$(libllvmsystem_la_LDFLAGS) $(LDFLAGS) -o $@
456
-libllvmtarget_la_LIBADD =
457
-am_libllvmtarget_la_OBJECTS = libllvmtarget_la-SubtargetFeature.lo \
458
-	libllvmtarget_la-Target.lo libllvmtarget_la-TargetData.lo \
459
-	libllvmtarget_la-TargetELFWriterInfo.lo \
460
-	libllvmtarget_la-TargetFrameInfo.lo \
461
-	libllvmtarget_la-TargetInstrInfo.lo \
462
-	libllvmtarget_la-TargetIntrinsicInfo.lo \
463
-	libllvmtarget_la-TargetLoweringObjectFile.lo \
464
-	libllvmtarget_la-TargetMachOWriterInfo.lo \
465
-	libllvmtarget_la-TargetMachine.lo \
466
-	libllvmtarget_la-TargetRegisterInfo.lo \
467
-	libllvmtarget_la-TargetSubtarget.lo
468
-libllvmtarget_la_OBJECTS = $(am_libllvmtarget_la_OBJECTS)
469
-libllvmtarget_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
470
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
471
-	$(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
472
-	$(LDFLAGS) -o $@
473
-libllvmtargetarm_la_LIBADD =
474
-am__libllvmtargetarm_la_SOURCES_DIST =  \
475
-	llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp \
476
-	llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp \
477
-	llvm/lib/Target/ARM/ARMCodeEmitter.cpp \
478
-	llvm/lib/Target/ARM/ARMConstantIslandPass.cpp \
479
-	llvm/lib/Target/ARM/ARMConstantPoolValue.cpp \
480
-	llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp \
481
-	llvm/lib/Target/ARM/ARMInstrInfo.cpp \
482
-	llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp \
483
-	llvm/lib/Target/ARM/ARMISelLowering.cpp \
484
-	llvm/lib/Target/ARM/ARMJITInfo.cpp \
485
-	llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp \
486
-	llvm/lib/Target/ARM/ARMMCAsmInfo.cpp \
487
-	llvm/lib/Target/ARM/ARMRegisterInfo.cpp \
488
-	llvm/lib/Target/ARM/ARMSubtarget.cpp \
489
-	llvm/lib/Target/ARM/ARMTargetMachine.cpp \
490
-	llvm/lib/Target/ARM/NEONMoveFix.cpp \
491
-	llvm/lib/Target/ARM/NEONPreAllocPass.cpp \
492
-	llvm/lib/Target/ARM/Thumb1InstrInfo.cpp \
493
-	llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp \
494
-	llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp \
495
-	llvm/lib/Target/ARM/Thumb2InstrInfo.cpp \
496
-	llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp \
497
-	llvm/lib/Target/ARM/Thumb2SizeReduction.cpp \
498
-	llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
499
-@BUILD_ARM_TRUE@am_libllvmtargetarm_la_OBJECTS =  \
500
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMBaseInstrInfo.lo \
501
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMBaseRegisterInfo.lo \
502
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMCodeEmitter.lo \
503
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMConstantIslandPass.lo \
504
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMConstantPoolValue.lo \
505
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMExpandPseudoInsts.lo \
506
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMInstrInfo.lo \
507
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMISelDAGToDAG.lo \
508
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMISelLowering.lo \
509
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMJITInfo.lo \
510
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMLoadStoreOptimizer.lo \
511
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMMCAsmInfo.lo \
512
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMRegisterInfo.lo \
513
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMSubtarget.lo \
514
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMTargetMachine.lo \
515
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-NEONMoveFix.lo \
516
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-NEONPreAllocPass.lo \
517
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-Thumb1InstrInfo.lo \
518
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-Thumb1RegisterInfo.lo \
519
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-Thumb2ITBlockPass.lo \
520
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-Thumb2InstrInfo.lo \
521
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-Thumb2RegisterInfo.lo \
522
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-Thumb2SizeReduction.lo \
523
-@BUILD_ARM_TRUE@	libllvmtargetarm_la-ARMTargetInfo.lo
524
-libllvmtargetarm_la_OBJECTS = $(am_libllvmtargetarm_la_OBJECTS)
525
-libllvmtargetarm_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
526
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
527
-	$(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
528
-	$(LDFLAGS) -o $@
529
-@BUILD_ARM_TRUE@am_libllvmtargetarm_la_rpath =
530
-libllvmtargetppc_la_LIBADD =
531
-am__libllvmtargetppc_la_SOURCES_DIST =  \
205
+libllvmjit_la_LIBADD =
206
+am_libllvmjit_la_OBJECTS = ELFWriter.lo MachineFunction.lo \
207
+	MachineInstr.lo MachineModuleInfo.lo ExecutionEngine.lo \
208
+	Intercept.lo JIT.lo JITDebugRegisterer.lo JITDwarfEmitter.lo \
209
+	JITEmitter.lo JITMemoryManager.lo OProfileJITEventListener.lo \
210
+	TargetSelect.lo MCAsmInfo.lo APFloat.lo APInt.lo Allocator.lo \
211
+	CommandLine.lo ConstantRange.lo Debug.lo Dwarf.lo \
212
+	ErrorHandling.lo FoldingSet.lo FormattedStream.lo \
213
+	ManagedStatic.lo MemoryBuffer.lo PrettyStackTrace.lo \
214
+	SmallPtrSet.lo Statistic.lo StringExtras.lo StringMap.lo \
215
+	StringPool.lo TargetRegistry.lo Timer.lo Triple.lo Twine.lo \
216
+	raw_ostream.lo SubtargetFeature.lo TargetData.lo \
217
+	TargetMachine.lo AsmWriter.lo Attributes.lo AutoUpgrade.lo \
218
+	BasicBlock.lo ConstantFold.lo Constants.lo Core.lo \
219
+	Dominators.lo Function.lo Globals.lo InlineAsm.lo \
220
+	Instruction.lo Instructions.lo IntrinsicInst.lo LLVMContext.lo \
221
+	LeakDetector.lo Mangler.lo Metadata.lo Module.lo \
222
+	ModuleProvider.lo Pass.lo PassManager.lo PrintModulePass.lo \
223
+	Type.lo TypeSymbolTable.lo Use.lo Value.lo ValueSymbolTable.lo \
224
+	ValueTypes.lo Verifier.lo
225
+libllvmjit_la_OBJECTS = $(am_libllvmjit_la_OBJECTS)
226
+libllvmpowerpccodegen_la_LIBADD =
227
+am__libllvmpowerpccodegen_la_SOURCES_DIST =  \
228
+	llvm/lib/CodeGen/ScheduleDAG.cpp \
532 229
 	llvm/lib/Target/PowerPC/PPCBranchSelector.cpp \
533 230
 	llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp \
534 231
 	llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp \
535
-	llvm/lib/Target/PowerPC/PPCInstrInfo.cpp \
536 232
 	llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp \
537 233
 	llvm/lib/Target/PowerPC/PPCISelLowering.cpp \
234
+	llvm/lib/Target/PowerPC/PPCInstrInfo.cpp \
538 235
 	llvm/lib/Target/PowerPC/PPCJITInfo.cpp \
539
-	llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp \
540 236
 	llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp \
237
+	llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp \
541 238
 	llvm/lib/Target/PowerPC/PPCPredicates.cpp \
542 239
 	llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp \
543 240
 	llvm/lib/Target/PowerPC/PPCSubtarget.cpp \
544 241
 	llvm/lib/Target/PowerPC/PPCTargetMachine.cpp \
545
-	llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
546
-@BUILD_PPC_TRUE@am_libllvmtargetppc_la_OBJECTS =  \
547
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCBranchSelector.lo \
548
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCCodeEmitter.lo \
549
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCHazardRecognizers.lo \
550
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCInstrInfo.lo \
551
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCISelDAGToDAG.lo \
552
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCISelLowering.lo \
553
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCJITInfo.lo \
554
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCMachOWriterInfo.lo \
555
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCMCAsmInfo.lo \
556
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCPredicates.lo \
557
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCRegisterInfo.lo \
558
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCSubtarget.lo \
559
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PPCTargetMachine.lo \
560
-@BUILD_PPC_TRUE@	libllvmtargetppc_la-PowerPCTargetInfo.lo
561
-libllvmtargetppc_la_OBJECTS = $(am_libllvmtargetppc_la_OBJECTS)
562
-libllvmtargetppc_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
242
+	llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp \
243
+	llvm/lib/Target/TargetMachOWriterInfo.cpp
244
+@BUILD_PPC_TRUE@am_libllvmpowerpccodegen_la_OBJECTS =  \
245
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-ScheduleDAG.lo \
246
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCBranchSelector.lo \
247
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCCodeEmitter.lo \
248
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCHazardRecognizers.lo \
249
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCISelDAGToDAG.lo \
250
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCISelLowering.lo \
251
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCInstrInfo.lo \
252
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCJITInfo.lo \
253
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCMCAsmInfo.lo \
254
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCMachOWriterInfo.lo \
255
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCPredicates.lo \
256
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCRegisterInfo.lo \
257
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCSubtarget.lo \
258
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PPCTargetMachine.lo \
259
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-PowerPCTargetInfo.lo \
260
+@BUILD_PPC_TRUE@	libllvmpowerpccodegen_la-TargetMachOWriterInfo.lo
261
+libllvmpowerpccodegen_la_OBJECTS =  \
262
+	$(am_libllvmpowerpccodegen_la_OBJECTS)
263
+@BUILD_PPC_TRUE@am_libllvmpowerpccodegen_la_rpath =
264
+libllvmsupport_la_LIBADD =
265
+am_libllvmsupport_la_OBJECTS = APFloat.lo APInt.lo APSInt.lo \
266
+	Allocator.lo CommandLine.lo ConstantRange.lo Debug.lo \
267
+	DeltaAlgorithm.lo Dwarf.lo ErrorHandling.lo FileUtilities.lo \
268
+	FoldingSet.lo FormattedStream.lo GraphWriter.lo IsInf.lo \
269
+	IsNAN.lo ManagedStatic.lo MemoryBuffer.lo MemoryObject.lo \
270
+	PluginLoader.lo PrettyStackTrace.lo Regex.lo \
271
+	SlowOperationInformer.lo SmallPtrSet.lo SourceMgr.lo \
272
+	Statistic.lo StringExtras.lo StringMap.lo StringPool.lo \
273
+	StringRef.lo SystemUtils.lo TargetRegistry.lo Timer.lo \
274
+	Triple.lo Twine.lo raw_os_ostream.lo raw_ostream.lo regcomp.lo \
275
+	regerror.lo regexec.lo regfree.lo regstrlcpy.lo
276
+libllvmsupport_la_OBJECTS = $(am_libllvmsupport_la_OBJECTS)
277
+libllvmsystem_la_DEPENDENCIES =
278
+am_libllvmsystem_la_OBJECTS = Alarm.lo Atomic.lo Disassembler.lo \
279
+	DynamicLibrary.lo Errno.lo Host.lo IncludeFile.lo Memory.lo \
280
+	Mutex.lo Path.lo Process.lo Program.lo RWMutex.lo Signals.lo \
281
+	ThreadLocal.lo Threading.lo TimeValue.lo
282
+libllvmsystem_la_OBJECTS = $(am_libllvmsystem_la_OBJECTS)
283
+libllvmsystem_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
563 284
 	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
564
-	$(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
285
+	$(AM_CXXFLAGS) $(CXXFLAGS) $(libllvmsystem_la_LDFLAGS) \
565 286
 	$(LDFLAGS) -o $@
566
-@BUILD_PPC_TRUE@am_libllvmtargetppc_la_rpath =
567
-libllvmtargetx86_la_LIBADD =
568
-am__libllvmtargetx86_la_SOURCES_DIST =  \
287
+libllvmx86codegen_la_LIBADD =
288
+am__libllvmx86codegen_la_SOURCES_DIST =  \
289
+	llvm/lib/CodeGen/DeadMachineInstructionElim.cpp \
290
+	llvm/lib/CodeGen/MachineDominators.cpp \
291
+	llvm/lib/CodeGen/MachineLoopInfo.cpp \
292
+	llvm/lib/CodeGen/MachineModuleInfoImpls.cpp \
293
+	llvm/lib/CodeGen/SelectionDAG/FastISel.cpp \
294
+	llvm/lib/MC/MCAsmInfoCOFF.cpp llvm/lib/MC/MCCodeEmitter.cpp \
295
+	llvm/lib/MC/MCContext.cpp llvm/lib/MC/MCExpr.cpp \
296
+	llvm/lib/MC/MCInst.cpp llvm/lib/Target/TargetELFWriterInfo.cpp \
297
+	llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp \
298
+	llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp \
569 299
 	llvm/lib/Target/X86/X86CodeEmitter.cpp \
570 300
 	llvm/lib/Target/X86/X86ELFWriterInfo.cpp \
301
+	llvm/lib/Target/X86/X86FastISel.cpp \
571 302
 	llvm/lib/Target/X86/X86FloatingPoint.cpp \
572 303
 	llvm/lib/Target/X86/X86FloatingPointRegKill.cpp \
573 304
 	llvm/lib/Target/X86/X86ISelDAGToDAG.cpp \
... ...
@@ -578,53 +350,36 @@ am__libllvmtargetx86_la_SOURCES_DIST =  \
578 578
 	llvm/lib/Target/X86/X86RegisterInfo.cpp \
579 579
 	llvm/lib/Target/X86/X86Subtarget.cpp \
580 580
 	llvm/lib/Target/X86/X86TargetMachine.cpp \
581
-	llvm/lib/Target/X86/X86FastISel.cpp \
582
-	llvm/lib/Target/X86/X86TargetObjectFile.cpp \
583
-	llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
584
-@BUILD_X86_TRUE@am_libllvmtargetx86_la_OBJECTS =  \
585
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86CodeEmitter.lo \
586
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86ELFWriterInfo.lo \
587
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86FloatingPoint.lo \
588
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86FloatingPointRegKill.lo \
589
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86ISelDAGToDAG.lo \
590
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86ISelLowering.lo \
591
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86InstrInfo.lo \
592
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86JITInfo.lo \
593
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86MCAsmInfo.lo \
594
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86RegisterInfo.lo \
595
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86Subtarget.lo \
596
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86TargetMachine.lo \
597
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86FastISel.lo \
598
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86TargetObjectFile.lo \
599
-@BUILD_X86_TRUE@	libllvmtargetx86_la-X86TargetInfo.lo
600
-libllvmtargetx86_la_OBJECTS = $(am_libllvmtargetx86_la_OBJECTS)
601
-libllvmtargetx86_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
602
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
603
-	$(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
604
-	$(LDFLAGS) -o $@
605
-@BUILD_X86_TRUE@am_libllvmtargetx86_la_rpath =
606
-libllvmtransformutils_la_LIBADD =
607
-am_libllvmtransformutils_la_OBJECTS =  \
608
-	libllvmtransformutils_la-AddrModeMatcher.lo \
609
-	libllvmtransformutils_la-BasicBlockUtils.lo \
610
-	libllvmtransformutils_la-BreakCriticalEdges.lo \
611
-	libllvmtransformutils_la-DemoteRegToStack.lo \
612
-	libllvmtransformutils_la-LCSSA.lo \
613
-	libllvmtransformutils_la-Local.lo \
614
-	libllvmtransformutils_la-LoopSimplify.lo \
615
-	libllvmtransformutils_la-LowerInvoke.lo \
616
-	libllvmtransformutils_la-LowerSwitch.lo \
617
-	libllvmtransformutils_la-Mem2Reg.lo \
618
-	libllvmtransformutils_la-PromoteMemoryToRegister.lo \
619
-	libllvmtransformutils_la-SimplifyCFG.lo \
620
-	libllvmtransformutils_la-SSAUpdater.lo \
621
-	libllvmtransformutils_la-UnifyFunctionExitNodes.lo
622
-libllvmtransformutils_la_OBJECTS =  \
623
-	$(am_libllvmtransformutils_la_OBJECTS)
624
-libllvmtransformutils_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
625
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
626
-	$(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
627
-	$(LDFLAGS) -o $@
581
+	llvm/lib/Target/X86/X86TargetObjectFile.cpp
582
+@BUILD_X86_TRUE@am_libllvmx86codegen_la_OBJECTS = libllvmx86codegen_la-DeadMachineInstructionElim.lo \
583
+@BUILD_X86_TRUE@	libllvmx86codegen_la-MachineDominators.lo \
584
+@BUILD_X86_TRUE@	libllvmx86codegen_la-MachineLoopInfo.lo \
585
+@BUILD_X86_TRUE@	libllvmx86codegen_la-MachineModuleInfoImpls.lo \
586
+@BUILD_X86_TRUE@	libllvmx86codegen_la-FastISel.lo \
587
+@BUILD_X86_TRUE@	libllvmx86codegen_la-MCAsmInfoCOFF.lo \
588
+@BUILD_X86_TRUE@	libllvmx86codegen_la-MCCodeEmitter.lo \
589
+@BUILD_X86_TRUE@	libllvmx86codegen_la-MCContext.lo \
590
+@BUILD_X86_TRUE@	libllvmx86codegen_la-MCExpr.lo \
591
+@BUILD_X86_TRUE@	libllvmx86codegen_la-MCInst.lo \
592
+@BUILD_X86_TRUE@	libllvmx86codegen_la-TargetELFWriterInfo.lo \
593
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86TargetInfo.lo \
594
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86COFFMachineModuleInfo.lo \
595
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86CodeEmitter.lo \
596
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86ELFWriterInfo.lo \
597
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86FastISel.lo \
598
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86FloatingPoint.lo \
599
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86FloatingPointRegKill.lo \
600
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86ISelDAGToDAG.lo \
601
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86ISelLowering.lo \
602
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86InstrInfo.lo \
603
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86JITInfo.lo \
604
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86MCAsmInfo.lo \
605
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86RegisterInfo.lo \
606
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86Subtarget.lo \
607
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86TargetMachine.lo \
608
+@BUILD_X86_TRUE@	libllvmx86codegen_la-X86TargetObjectFile.lo
609
+libllvmx86codegen_la_OBJECTS = $(am_libllvmx86codegen_la_OBJECTS)
610
+@BUILD_X86_TRUE@am_libllvmx86codegen_la_rpath =
628 611
 PROGRAMS = $(noinst_PROGRAMS)
629 612
 am_FileCheck_OBJECTS = FileCheck-FileCheck.$(OBJEXT)
630 613
 FileCheck_OBJECTS = $(am_FileCheck_OBJECTS)
... ...
@@ -664,35 +419,22 @@ llvm_dis_DEPENDENCIES = libllvmasmparser.la libllvmbitreader.la \
664 664
 llvm_dis_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
665 665
 	$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(llvm_dis_CXXFLAGS) \
666 666
 	$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
667
-am_llvmunittest_ADT_OBJECTS = llvmunittest_ADT-APFloatTest.$(OBJEXT) \
668
-	llvmunittest_ADT-APIntTest.$(OBJEXT) \
669
-	llvmunittest_ADT-DenseMapTest.$(OBJEXT) \
670
-	llvmunittest_ADT-DenseSetTest.$(OBJEXT) \
671
-	llvmunittest_ADT-ImmutableSetTest.$(OBJEXT) \
672
-	llvmunittest_ADT-SmallStringTest.$(OBJEXT) \
673
-	llvmunittest_ADT-SmallVectorTest.$(OBJEXT) \
674
-	llvmunittest_ADT-SparseBitVectorTest.$(OBJEXT) \
675
-	llvmunittest_ADT-StringMapTest.$(OBJEXT) \
676
-	llvmunittest_ADT-StringRefTest.$(OBJEXT) \
677
-	llvmunittest_ADT-TripleTest.$(OBJEXT) \
678
-	llvmunittest_ADT-TwineTest.$(OBJEXT)
667
+am_llvmunittest_ADT_OBJECTS = APFloatTest.$(OBJEXT) \
668
+	APIntTest.$(OBJEXT) DenseMapTest.$(OBJEXT) \
669
+	DenseSetTest.$(OBJEXT) ImmutableSetTest.$(OBJEXT) \
670
+	SmallStringTest.$(OBJEXT) SmallVectorTest.$(OBJEXT) \
671
+	SparseBitVectorTest.$(OBJEXT) StringMapTest.$(OBJEXT) \
672
+	StringRefTest.$(OBJEXT) TripleTest.$(OBJEXT) \
673
+	TwineTest.$(OBJEXT)
679 674
 llvmunittest_ADT_OBJECTS = $(am_llvmunittest_ADT_OBJECTS)
680 675
 llvmunittest_ADT_DEPENDENCIES = libgoogletest.la libllvmcore.la \
681 676
 	libllvmsupport.la libllvmsystem.la
682
-llvmunittest_ADT_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
683
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
684
-	$(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
685
-	$(LDFLAGS) -o $@
686 677
 am_llvmunittest_ExecutionEngine_OBJECTS =  \
687 678
 	llvmunittest_ExecutionEngine-ExecutionEngineTest.$(OBJEXT)
688 679
 llvmunittest_ExecutionEngine_OBJECTS =  \
689 680
 	$(am_llvmunittest_ExecutionEngine_OBJECTS)
690 681
 llvmunittest_ExecutionEngine_DEPENDENCIES = libgoogletest.la \
691 682
 	libllvminterpreter.la $(libclamavcxx_la_LIBADD)
692
-llvmunittest_ExecutionEngine_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
693
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
694
-	$(llvmunittest_ExecutionEngine_CXXFLAGS) $(CXXFLAGS) \
695
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
696 683
 am_llvmunittest_JIT_OBJECTS =  \
697 684
 	llvmunittest_JIT-JITEventListenerTest.$(OBJEXT) \
698 685
 	llvmunittest_JIT-JITMemoryManagerTest.$(OBJEXT) \
... ...
@@ -700,10 +442,6 @@ am_llvmunittest_JIT_OBJECTS =  \
700 700
 llvmunittest_JIT_OBJECTS = $(am_llvmunittest_JIT_OBJECTS)
701 701
 llvmunittest_JIT_DEPENDENCIES = libgoogletest.la libllvmasmparser.la \
702 702
 	$(libclamavcxx_la_LIBADD)
703
-llvmunittest_JIT_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
704
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
705
-	$(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
706
-	$(LDFLAGS) -o $@
707 703
 am_llvmunittest_Support_OBJECTS =  \
708 704
 	llvmunittest_Support-AllocatorTest.$(OBJEXT) \
709 705
 	llvmunittest_Support-ConstantRangeTest.$(OBJEXT) \
... ...
@@ -715,10 +453,6 @@ am_llvmunittest_Support_OBJECTS =  \
715 715
 llvmunittest_Support_OBJECTS = $(am_llvmunittest_Support_OBJECTS)
716 716
 llvmunittest_Support_DEPENDENCIES = libgoogletest.la libllvmcore.la \
717 717
 	libllvmsupport.la libllvmsystem.la
718
-llvmunittest_Support_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
719
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
720
-	$(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
721
-	$(LDFLAGS) -o $@
722 718
 am_llvmunittest_VMCore_OBJECTS =  \
723 719
 	llvmunittest_VMCore-CallGraphSCCPass.$(OBJEXT) \
724 720
 	llvmunittest_VMCore-ConstantsTest.$(OBJEXT) \
... ...
@@ -728,10 +462,6 @@ llvmunittest_VMCore_OBJECTS = $(am_llvmunittest_VMCore_OBJECTS)
728 728
 llvmunittest_VMCore_DEPENDENCIES = libgoogletest.la libllvmtarget.la \
729 729
 	libllvmipa.la libllvmcore.la libllvmsupport.la \
730 730
 	libllvmsystem.la
731
-llvmunittest_VMCore_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
732
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
733
-	$(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
734
-	$(LDFLAGS) -o $@
735 731
 am_not_OBJECTS = not-not.$(OBJEXT)
736 732
 not_OBJECTS = $(am_not_OBJECTS)
737 733
 not_DEPENDENCIES = libllvmsystem.la
... ...
@@ -806,17 +536,13 @@ AM_V_GEN = $(am__v_GEN_$(V))
806 806
 am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
807 807
 am__v_GEN_0 = @echo "  GEN   " $@;
808 808
 SOURCES = $(libclamavcxx_la_SOURCES) $(libgoogletest_la_SOURCES) \
809
-	$(libllvmasmparser_la_SOURCES) $(libllvmasmprinter_la_SOURCES) \
810
-	$(libllvmbitreader_la_SOURCES) $(libllvmbitwriter_la_SOURCES) \
811
-	$(libllvmcodegen_la_SOURCES) $(libllvmcore_la_SOURCES) \
812
-	$(libllvmexecutionengine_la_SOURCES) \
813
-	$(libllvminterpreter_la_SOURCES) $(libllvmipa_la_SOURCES) \
814
-	$(libllvmmc_la_SOURCES) $(libllvmscalar_la_SOURCES) \
815
-	$(libllvmsdag_la_SOURCES) $(libllvmsupport_la_SOURCES) \
816
-	$(libllvmsystem_la_SOURCES) $(libllvmtarget_la_SOURCES) \
817
-	$(libllvmtargetarm_la_SOURCES) $(libllvmtargetppc_la_SOURCES) \
818
-	$(libllvmtargetx86_la_SOURCES) \
819
-	$(libllvmtransformutils_la_SOURCES) $(FileCheck_SOURCES) \
809
+	$(libllvmarmcodegen_la_SOURCES) $(libllvmasmparser_la_SOURCES) \
810
+	$(libllvmasmprinter_la_SOURCES) $(libllvmbitreader_la_SOURCES) \
811
+	$(libllvmbitwriter_la_SOURCES) $(libllvmcodegen_la_SOURCES) \
812
+	$(libllvminterpreter_la_SOURCES) $(libllvmjit_la_SOURCES) \
813
+	$(libllvmpowerpccodegen_la_SOURCES) \
814
+	$(libllvmsupport_la_SOURCES) $(libllvmsystem_la_SOURCES) \
815
+	$(libllvmx86codegen_la_SOURCES) $(FileCheck_SOURCES) \
820 816
 	$(count_SOURCES) $(llc_SOURCES) $(lli_SOURCES) \
821 817
 	$(llvm_as_SOURCES) $(llvm_dis_SOURCES) \
822 818
 	$(llvmunittest_ADT_SOURCES) \
... ...
@@ -825,19 +551,15 @@ SOURCES = $(libclamavcxx_la_SOURCES) $(libgoogletest_la_SOURCES) \
825 825
 	$(llvmunittest_VMCore_SOURCES) $(not_SOURCES) \
826 826
 	$(tblgen_SOURCES)
827 827
 DIST_SOURCES = $(libclamavcxx_la_SOURCES) $(libgoogletest_la_SOURCES) \
828
+	$(am__libllvmarmcodegen_la_SOURCES_DIST) \
828 829
 	$(libllvmasmparser_la_SOURCES) \
829 830
 	$(am__libllvmasmprinter_la_SOURCES_DIST) \
830 831
 	$(libllvmbitreader_la_SOURCES) $(libllvmbitwriter_la_SOURCES) \
831
-	$(libllvmcodegen_la_SOURCES) $(libllvmcore_la_SOURCES) \
832
-	$(libllvmexecutionengine_la_SOURCES) \
833
-	$(libllvminterpreter_la_SOURCES) $(libllvmipa_la_SOURCES) \
834
-	$(libllvmmc_la_SOURCES) $(libllvmscalar_la_SOURCES) \
835
-	$(libllvmsdag_la_SOURCES) $(libllvmsupport_la_SOURCES) \
836
-	$(libllvmsystem_la_SOURCES) $(libllvmtarget_la_SOURCES) \
837
-	$(am__libllvmtargetarm_la_SOURCES_DIST) \
838
-	$(am__libllvmtargetppc_la_SOURCES_DIST) \
839
-	$(am__libllvmtargetx86_la_SOURCES_DIST) \
840
-	$(libllvmtransformutils_la_SOURCES) $(FileCheck_SOURCES) \
832
+	$(libllvmcodegen_la_SOURCES) $(libllvminterpreter_la_SOURCES) \
833
+	$(libllvmjit_la_SOURCES) \
834
+	$(am__libllvmpowerpccodegen_la_SOURCES_DIST) \
835
+	$(libllvmsupport_la_SOURCES) $(libllvmsystem_la_SOURCES) \
836
+	$(am__libllvmx86codegen_la_SOURCES_DIST) $(FileCheck_SOURCES) \
841 837
 	$(count_SOURCES) $(llc_SOURCES) $(lli_SOURCES) \
842 838
 	$(llvm_as_SOURCES) $(llvm_dis_SOURCES) \
843 839
 	$(llvmunittest_ADT_SOURCES) \
... ...
@@ -998,7 +720,13 @@ target_vendor = @target_vendor@
998 998
 top_build_prefix = @top_build_prefix@
999 999
 top_builddir = @top_builddir@
1000 1000
 top_srcdir = @top_srcdir@
1001
-AM_CPPFLAGS = -I$(top_srcdir)/../.. -I$(top_srcdir)/.. -I$(top_builddir)/../../
1001
+LLVM_INCLUDES = -I$(top_srcdir)/llvm/include -I$(top_builddir)/llvm/include
1002
+# TODO: _DEBUG should be defined for --enable-debug, and NDEBUG otherwise, but
1003
+# keep it like this while I'm testing LLVM
1004
+# TODO: HP-UX should have -D_REENTRANT -D_HPUX_SOURCE
1005
+LLVM_DEFS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_DEBUG -D_GNU_SOURCE
1006
+AM_CPPFLAGS = -I$(top_srcdir)/../.. -I$(top_srcdir)/.. -I$(top_builddir)/../../ $(LLVM_INCLUDES) $(LLVM_DEFS)
1007
+AM_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1002 1008
 ACLOCAL_AMFLAGS = -I m4
1003 1009
 @DEBUG_BUILD_FALSE@LLVM_CONFIG = llvm/Release/bin/llvm-config
1004 1010
 @DEBUG_BUILD_TRUE@LLVM_CONFIG = llvm/Debug/bin/llvm-config
... ...
@@ -1010,119 +738,87 @@ ACLOCAL_AMFLAGS = -I m4
1010 1010
 #libclamavcxx_la_CPPFLAGS = $(AM_CPPFLAGS) `$(LLVM_CONFIG) --cppflags`
1011 1011
 #libclamavcxx_la_DEPENDENCIES = $(LLVM_DEPS)
1012 1012
 #libclamavcxx_la_LDFLAGS = `$(LLVM_CONFIG) --ldflags --libs jit nativecodegen`
1013
-libclamavcxx_la_CPPFLAGS = $(AM_CPPFLAGS) $(LLVM_INCLUDES) $(LLVM_DEFS)
1013
+#libclamavcxx_la_CPPFLAGS = $(AM_CPPFLAGS) $(LLVM_INCLUDES) $(LLVM_DEFS)
1014 1014
 #libclamavcxx_la_DEPENDENCIES = $(LLVM_DEPS)
1015 1015
 noinst_LTLIBRARIES = libclamavcxx.la libllvmsupport.la \
1016
-	libllvmsystem.la libllvmcore.la libllvmtarget.la \
1017
-	libllvmsdag.la libllvmcodegen.la libllvmexecutionengine.la \
1018
-	libllvmscalar.la libllvmipa.la libllvmtransformutils.la \
1019
-	libllvmmc.la $(am__append_2) $(am__append_4) $(am__append_6)
1020
-libclamavcxx_la_LIBADD = $(am__append_1) $(am__append_3) \
1021
-	$(am__append_5) libllvmsdag.la libllvmexecutionengine.la \
1022
-	libllvmcodegen.la libllvmscalar.la libllvmtransformutils.la \
1023
-	libllvmipa.la libllvmtarget.la libllvmmc.la libllvmcore.la \
1024
-	libllvmsupport.la libllvmsystem.la
1016
+	libllvmsystem.la libllvmcodegen.la libllvmjit.la \
1017
+	$(am__append_3) $(am__append_6) $(am__append_9)
1018
+libclamavcxx_la_LIBADD = libllvmjit.la libllvmcodegen.la \
1019
+	libllvmsystem.la $(am__append_1) $(am__append_4) \
1020
+	$(am__append_7)
1021
+libclamavcxx_la_DEPENDENCIES = libllvmjit.la libllvmcodegen.la \
1022
+	libllvmsystem.la $(am__append_2) $(am__append_5) \
1023
+	$(am__append_8)
1025 1024
 libclamavcxx_la_LDFLAGS = -no-undefined
1026
-#libclamavcxx_la_LDFLAGS = `$(LLVM_CONFIG) --ldflags --libs jit nativecodegen`
1025
+libclamavcxx_la_CXXFLAGS = $(LLVM_CXXFLAGS)
1027 1026
 libclamavcxx_la_SOURCES = bytecode2llvm.cpp
1028
-LLVM_INCLUDES = -I$(top_srcdir)/llvm/include -I$(top_builddir)/llvm/include
1029
-# TODO: _DEBUG should be defined for --enable-debug, and NDEBUG otherwise, but
1030
-# keep it like this while I'm testing LLVM
1031
-# TODO: HP-UX should have -D_REENTRANT -D_HPUX_SOURCE
1032
-LLVM_DEFS = -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D_DEBUG -D_GNU_SOURCE
1033 1027
 LLVM_CXXFLAGS = -Woverloaded-virtual -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings
1034 1028
 EXTRA_DIST = $(top_srcdir)/llvm llvmdejagnu.sh
1035
-libllvmsystem_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1036
-libllvmsystem_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1037 1029
 libllvmsystem_la_LDFLAGS = -pthread
1038 1030
 libllvmsystem_la_LIBADD = -ldl
1039 1031
 libllvmsystem_la_SOURCES = \
1040
-    llvm/lib/System/Alarm.cpp\
1041
-    llvm/lib/System/Atomic.cpp\
1042
-    llvm/lib/System/Disassembler.cpp\
1043
-    llvm/lib/System/DynamicLibrary.cpp\
1044
-    llvm/lib/System/Errno.cpp\
1045
-    llvm/lib/System/Host.cpp\
1046
-    llvm/lib/System/IncludeFile.cpp\
1047
-    llvm/lib/System/Memory.cpp\
1048
-    llvm/lib/System/Mutex.cpp\
1049
-    llvm/lib/System/Path.cpp\
1050
-    llvm/lib/System/Process.cpp\
1051
-    llvm/lib/System/Program.cpp\
1052
-    llvm/lib/System/RWMutex.cpp\
1053
-    llvm/lib/System/Signals.cpp\
1054
-    llvm/lib/System/ThreadLocal.cpp\
1055
-    llvm/lib/System/Threading.cpp\
1056
-    llvm/lib/System/TimeValue.cpp\
1057
-    llvm/lib/System/Unix/Alarm.inc\
1058
-    llvm/lib/System/Unix/Host.inc\
1059
-    llvm/lib/System/Unix/Memory.inc\
1060
-    llvm/lib/System/Unix/Mutex.inc\
1061
-    llvm/lib/System/Unix/Path.inc\
1062
-    llvm/lib/System/Unix/Process.inc\
1063
-    llvm/lib/System/Unix/Program.inc\
1064
-    llvm/lib/System/Unix/RWMutex.inc\
1065
-    llvm/lib/System/Unix/Signals.inc\
1066
-    llvm/lib/System/Unix/ThreadLocal.inc\
1067
-    llvm/lib/System/Unix/TimeValue.inc\
1068
-    llvm/lib/System/Win32/Alarm.inc\
1069
-    llvm/lib/System/Win32/DynamicLibrary.inc\
1070
-    llvm/lib/System/Win32/Host.inc\
1071
-    llvm/lib/System/Win32/Memory.inc\
1072
-    llvm/lib/System/Win32/Mutex.inc\
1073
-    llvm/lib/System/Win32/Path.inc\
1074
-    llvm/lib/System/Win32/Process.inc\
1075
-    llvm/lib/System/Win32/Program.inc\
1076
-    llvm/lib/System/Win32/RWMutex.inc\
1077
-    llvm/lib/System/Win32/Signals.inc\
1078
-    llvm/lib/System/Win32/ThreadLocal.inc\
1079
-    llvm/lib/System/Win32/TimeValue.inc
1080
-
1081
-libllvmsupport_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1082
-libllvmsupport_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1032
+	llvm/lib/System/Alarm.cpp\
1033
+	llvm/lib/System/Atomic.cpp\
1034
+	llvm/lib/System/Disassembler.cpp\
1035
+	llvm/lib/System/DynamicLibrary.cpp\
1036
+	llvm/lib/System/Errno.cpp\
1037
+	llvm/lib/System/Host.cpp\
1038
+	llvm/lib/System/IncludeFile.cpp\
1039
+	llvm/lib/System/Memory.cpp\
1040
+	llvm/lib/System/Mutex.cpp\
1041
+	llvm/lib/System/Path.cpp\
1042
+	llvm/lib/System/Process.cpp\
1043
+	llvm/lib/System/Program.cpp\
1044
+	llvm/lib/System/RWMutex.cpp\
1045
+	llvm/lib/System/Signals.cpp\
1046
+	llvm/lib/System/ThreadLocal.cpp\
1047
+	llvm/lib/System/Threading.cpp\
1048
+	llvm/lib/System/TimeValue.cpp
1049
+
1083 1050
 libllvmsupport_la_SOURCES = \
1084
-    llvm/lib/Support/APFloat.cpp\
1085
-    llvm/lib/Support/APInt.cpp\
1086
-    llvm/lib/Support/APSInt.cpp\
1087
-    llvm/lib/Support/Allocator.cpp\
1088
-    llvm/lib/Support/CommandLine.cpp\
1089
-    llvm/lib/Support/ConstantRange.cpp\
1090
-    llvm/lib/Support/Debug.cpp\
1091
-    llvm/lib/Support/Dwarf.cpp\
1092
-    llvm/lib/Support/ErrorHandling.cpp\
1093
-    llvm/lib/Support/FileUtilities.cpp\
1094
-    llvm/lib/Support/FoldingSet.cpp\
1095
-    llvm/lib/Support/FormattedStream.cpp\
1096
-    llvm/lib/Support/GraphWriter.cpp\
1097
-    llvm/lib/Support/IsInf.cpp\
1098
-    llvm/lib/Support/IsNAN.cpp\
1099
-    llvm/lib/Support/ManagedStatic.cpp\
1100
-    llvm/lib/Support/MemoryBuffer.cpp\
1101
-    llvm/lib/Support/PluginLoader.cpp\
1102
-    llvm/lib/Support/PrettyStackTrace.cpp\
1103
-    llvm/lib/Support/SlowOperationInformer.cpp\
1104
-    llvm/lib/Support/SmallPtrSet.cpp\
1105
-    llvm/lib/Support/SourceMgr.cpp\
1106
-    llvm/lib/Support/Statistic.cpp\
1107
-    llvm/lib/Support/StringExtras.cpp\
1108
-    llvm/lib/Support/StringMap.cpp\
1109
-    llvm/lib/Support/StringPool.cpp\
1110
-    llvm/lib/Support/StringRef.cpp\
1111
-    llvm/lib/Support/SystemUtils.cpp\
1112
-    llvm/lib/Support/TargetRegistry.cpp\
1113
-    llvm/lib/Support/Timer.cpp\
1114
-    llvm/lib/Support/Triple.cpp\
1115
-    llvm/lib/Support/Twine.cpp\
1116
-    llvm/lib/Support/raw_os_ostream.cpp\
1117
-    llvm/lib/Support/raw_ostream.cpp\
1118
-    llvm/lib/Support/Regex.cpp\
1119
-    llvm/lib/Support/regcomp.c\
1120
-    llvm/lib/Support/regerror.c\
1121
-    llvm/lib/Support/regexec.c\
1122
-    llvm/lib/Support/regfree.c\
1123
-    llvm/lib/Support/regstrlcpy.c
1124
-
1125
-tblgen_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1051
+	llvm/lib/Support/APFloat.cpp\
1052
+	llvm/lib/Support/APInt.cpp\
1053
+	llvm/lib/Support/APSInt.cpp\
1054
+	llvm/lib/Support/Allocator.cpp\
1055
+	llvm/lib/Support/CommandLine.cpp\
1056
+	llvm/lib/Support/ConstantRange.cpp\
1057
+	llvm/lib/Support/Debug.cpp\
1058
+	llvm/lib/Support/DeltaAlgorithm.cpp\
1059
+	llvm/lib/Support/Dwarf.cpp\
1060
+	llvm/lib/Support/ErrorHandling.cpp\
1061
+	llvm/lib/Support/FileUtilities.cpp\
1062
+	llvm/lib/Support/FoldingSet.cpp\
1063
+	llvm/lib/Support/FormattedStream.cpp\
1064
+	llvm/lib/Support/GraphWriter.cpp\
1065
+	llvm/lib/Support/IsInf.cpp\
1066
+	llvm/lib/Support/IsNAN.cpp\
1067
+	llvm/lib/Support/ManagedStatic.cpp\
1068
+	llvm/lib/Support/MemoryBuffer.cpp\
1069
+	llvm/lib/Support/MemoryObject.cpp\
1070
+	llvm/lib/Support/PluginLoader.cpp\
1071
+	llvm/lib/Support/PrettyStackTrace.cpp\
1072
+	llvm/lib/Support/Regex.cpp\
1073
+	llvm/lib/Support/SlowOperationInformer.cpp\
1074
+	llvm/lib/Support/SmallPtrSet.cpp\
1075
+	llvm/lib/Support/SourceMgr.cpp\
1076
+	llvm/lib/Support/Statistic.cpp\
1077
+	llvm/lib/Support/StringExtras.cpp\
1078
+	llvm/lib/Support/StringMap.cpp\
1079
+	llvm/lib/Support/StringPool.cpp\
1080
+	llvm/lib/Support/StringRef.cpp\
1081
+	llvm/lib/Support/SystemUtils.cpp\
1082
+	llvm/lib/Support/TargetRegistry.cpp\
1083
+	llvm/lib/Support/Timer.cpp\
1084
+	llvm/lib/Support/Triple.cpp\
1085
+	llvm/lib/Support/Twine.cpp\
1086
+	llvm/lib/Support/raw_os_ostream.cpp\
1087
+	llvm/lib/Support/raw_ostream.cpp\
1088
+	llvm/lib/Support/regcomp.c\
1089
+	llvm/lib/Support/regerror.c\
1090
+	llvm/lib/Support/regexec.c\
1091
+	llvm/lib/Support/regfree.c\
1092
+	llvm/lib/Support/regstrlcpy.c
1093
+
1126 1094
 tblgen_CXXFLAGS = $(LLVM_CXXFLAGS)
1127 1095
 tblgen_LDADD = libllvmsupport.la libllvmsystem.la
1128 1096
 #TODO: if VERSIONSCRIPT
... ...
@@ -1153,337 +849,198 @@ tblgen_SOURCES = \
1153 1153
   llvm/utils/TableGen/TableGen.cpp\
1154 1154
   llvm/utils/TableGen/TableGenBackend.cpp
1155 1155
 
1156
-libllvmcore_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1157
-libllvmcore_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1158
-libllvmcore_la_SOURCES = \
1159
- llvm/lib/VMCore/AsmWriter.cpp\
1160
- llvm/lib/VMCore/Attributes.cpp\
1161
- llvm/lib/VMCore/AutoUpgrade.cpp\
1162
- llvm/lib/VMCore/BasicBlock.cpp\
1163
- llvm/lib/VMCore/ConstantFold.cpp\
1164
- llvm/lib/VMCore/Constants.cpp\
1165
- llvm/lib/VMCore/Core.cpp\
1166
- llvm/lib/VMCore/Dominators.cpp\
1167
- llvm/lib/VMCore/Function.cpp\
1168
- llvm/lib/VMCore/Globals.cpp\
1169
- llvm/lib/VMCore/InlineAsm.cpp\
1170
- llvm/lib/VMCore/Instruction.cpp\
1171
- llvm/lib/VMCore/Instructions.cpp\
1172
- llvm/lib/VMCore/IntrinsicInst.cpp\
1173
- llvm/lib/VMCore/LLVMContext.cpp\
1174
- llvm/lib/VMCore/LeakDetector.cpp\
1175
- llvm/lib/VMCore/Mangler.cpp\
1176
- llvm/lib/VMCore/Metadata.cpp\
1177
- llvm/lib/VMCore/Module.cpp\
1178
- llvm/lib/VMCore/ModuleProvider.cpp\
1179
- llvm/lib/VMCore/Pass.cpp\
1180
- llvm/lib/VMCore/PassManager.cpp\
1181
- llvm/lib/VMCore/PrintModulePass.cpp\
1182
- llvm/lib/VMCore/Type.cpp\
1183
- llvm/lib/VMCore/TypeSymbolTable.cpp\
1184
- llvm/lib/VMCore/Use.cpp\
1185
- llvm/lib/VMCore/Value.cpp\
1186
- llvm/lib/VMCore/ValueSymbolTable.cpp\
1187
- llvm/lib/VMCore/ValueTypes.cpp\
1188
- llvm/lib/VMCore/Verifier.cpp
1189
-
1190 1156
 TBLGEN = $(top_builddir)/tblgen
1191 1157
 TBLGEN_V = $(AM_V_GEN)$(TBLGEN)
1192 1158
 TBLGEN_FLAGS = -I$(top_srcdir)/llvm/include -I$(top_srcdir)/llvm/lib/Target
1193
-BUILT_SOURCES = llvm/include/llvm/Intrinsics.gen $(am__append_7) \
1194
-	$(am__append_8) $(am__append_9)
1159
+BUILT_SOURCES = llvm/include/llvm/Intrinsics.gen $(am__append_10) \
1160
+	$(am__append_11) $(am__append_12)
1195 1161
 
1196 1162
 # X86 Target
1197 1163
 @BUILD_X86_TRUE@TBLGEN_FLAGS_X86 = $(TBLGEN_FLAGS) -I$(top_srcdir)/llvm/lib/Target/X86
1198
-@BUILD_X86_TRUE@libllvmtargetx86_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/X86
1199
-@BUILD_X86_TRUE@libllvmtargetx86_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1200
-@BUILD_X86_TRUE@libllvmtargetx86_la_SOURCES = \
1201
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86CodeEmitter.cpp\
1202
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86ELFWriterInfo.cpp\
1203
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86FloatingPoint.cpp\
1204
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86FloatingPointRegKill.cpp\
1205
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86ISelDAGToDAG.cpp\
1206
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86ISelLowering.cpp\
1207
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86InstrInfo.cpp\
1208
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86JITInfo.cpp\
1209
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86MCAsmInfo.cpp\
1210
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86RegisterInfo.cpp\
1211
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86Subtarget.cpp\
1212
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86TargetMachine.cpp\
1213
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86FastISel.cpp\
1214
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/X86TargetObjectFile.cpp\
1215
-@BUILD_X86_TRUE@    llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
1164
+@BUILD_X86_TRUE@libllvmx86codegen_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/X86
1165
+@BUILD_X86_TRUE@libllvmx86codegen_la_SOURCES = \
1166
+@BUILD_X86_TRUE@	llvm/lib/CodeGen/DeadMachineInstructionElim.cpp\
1167
+@BUILD_X86_TRUE@	llvm/lib/CodeGen/MachineDominators.cpp\
1168
+@BUILD_X86_TRUE@	llvm/lib/CodeGen/MachineLoopInfo.cpp\
1169
+@BUILD_X86_TRUE@	llvm/lib/CodeGen/MachineModuleInfoImpls.cpp\
1170
+@BUILD_X86_TRUE@	llvm/lib/CodeGen/SelectionDAG/FastISel.cpp\
1171
+@BUILD_X86_TRUE@	llvm/lib/MC/MCAsmInfoCOFF.cpp\
1172
+@BUILD_X86_TRUE@	llvm/lib/MC/MCCodeEmitter.cpp\
1173
+@BUILD_X86_TRUE@	llvm/lib/MC/MCContext.cpp\
1174
+@BUILD_X86_TRUE@	llvm/lib/MC/MCExpr.cpp\
1175
+@BUILD_X86_TRUE@	llvm/lib/MC/MCInst.cpp\
1176
+@BUILD_X86_TRUE@	llvm/lib/Target/TargetELFWriterInfo.cpp\
1177
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp\
1178
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp\
1179
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86CodeEmitter.cpp\
1180
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86ELFWriterInfo.cpp\
1181
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86FastISel.cpp\
1182
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86FloatingPoint.cpp\
1183
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86FloatingPointRegKill.cpp\
1184
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86ISelDAGToDAG.cpp\
1185
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86ISelLowering.cpp\
1186
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86InstrInfo.cpp\
1187
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86JITInfo.cpp\
1188
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86MCAsmInfo.cpp\
1189
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86RegisterInfo.cpp\
1190
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86Subtarget.cpp\
1191
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86TargetMachine.cpp\
1192
+@BUILD_X86_TRUE@	llvm/lib/Target/X86/X86TargetObjectFile.cpp
1216 1193
 
1217 1194
 
1218 1195
 # PPC Target
1219 1196
 @BUILD_PPC_TRUE@TBLGEN_FLAGS_PPC = $(TBLGEN_FLAGS) -I$(top_srcdir)/llvm/lib/Target/PowerPC
1220
-@BUILD_PPC_TRUE@libllvmtargetppc_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/PowerPC
1221
-@BUILD_PPC_TRUE@libllvmtargetppc_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1222
-@BUILD_PPC_TRUE@libllvmtargetppc_la_SOURCES = \
1223
-@BUILD_PPC_TRUE@  llvm/lib/Target/PowerPC/PPCBranchSelector.cpp\
1224
-@BUILD_PPC_TRUE@  llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp\
1225
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp\
1226
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCInstrInfo.cpp\
1227
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp\
1228
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCISelLowering.cpp\
1229
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCJITInfo.cpp\
1230
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp\
1231
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp\
1232
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCPredicates.cpp\
1233
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp\
1234
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCSubtarget.cpp\
1235
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/PPCTargetMachine.cpp\
1236
-@BUILD_PPC_TRUE@ llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
1197
+@BUILD_PPC_TRUE@libllvmpowerpccodegen_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/PowerPC
1198
+@BUILD_PPC_TRUE@libllvmpowerpccodegen_la_SOURCES = \
1199
+@BUILD_PPC_TRUE@	llvm/lib/CodeGen/ScheduleDAG.cpp\
1200
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCBranchSelector.cpp\
1201
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp\
1202
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp\
1203
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp\
1204
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCISelLowering.cpp\
1205
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCInstrInfo.cpp\
1206
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCJITInfo.cpp\
1207
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp\
1208
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp\
1209
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCPredicates.cpp\
1210
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp\
1211
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCSubtarget.cpp\
1212
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/PPCTargetMachine.cpp\
1213
+@BUILD_PPC_TRUE@	llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp\
1214
+@BUILD_PPC_TRUE@	llvm/lib/Target/TargetMachOWriterInfo.cpp
1237 1215
 
1238 1216
 
1239 1217
 # ARM Target
1240 1218
 @BUILD_ARM_TRUE@TBLGEN_FLAGS_ARM = $(TBLGEN_FLAGS) -I$(top_srcdir)/llvm/lib/Target/ARM
1241
-@BUILD_ARM_TRUE@libllvmtargetarm_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/ARM
1242
-@BUILD_ARM_TRUE@libllvmtargetarm_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1243
-@BUILD_ARM_TRUE@libllvmtargetarm_la_SOURCES = \
1244
-@BUILD_ARM_TRUE@  llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp\
1245
-@BUILD_ARM_TRUE@  llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp\
1246
-@BUILD_ARM_TRUE@  llvm/lib/Target/ARM/ARMCodeEmitter.cpp\
1247
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMConstantIslandPass.cpp\
1248
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMConstantPoolValue.cpp\
1249
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp\
1250
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMInstrInfo.cpp\
1251
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp\
1252
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMISelLowering.cpp\
1253
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMJITInfo.cpp\
1254
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp\
1255
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMMCAsmInfo.cpp\
1256
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMRegisterInfo.cpp\
1257
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMSubtarget.cpp\
1258
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/ARMTargetMachine.cpp\
1259
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/NEONMoveFix.cpp\
1260
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/NEONPreAllocPass.cpp\
1261
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/Thumb1InstrInfo.cpp\
1262
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp\
1263
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp\
1264
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/Thumb2InstrInfo.cpp\
1265
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp\
1266
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/Thumb2SizeReduction.cpp\
1267
-@BUILD_ARM_TRUE@ llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
1219
+@BUILD_ARM_TRUE@libllvmarmcodegen_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_builddir) -I$(top_srcdir)/llvm/lib/Target/ARM
1220
+@BUILD_ARM_TRUE@libllvmarmcodegen_la_SOURCES = \
1221
+@BUILD_ARM_TRUE@	llvm/lib/CodeGen/IfConversion.cpp\
1222
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp\
1223
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp\
1224
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMCodeEmitter.cpp\
1225
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMConstantIslandPass.cpp\
1226
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMConstantPoolValue.cpp\
1227
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp\
1228
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp\
1229
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMISelLowering.cpp\
1230
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMInstrInfo.cpp\
1231
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMJITInfo.cpp\
1232
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp\
1233
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMMCAsmInfo.cpp\
1234
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMRegisterInfo.cpp\
1235
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMSubtarget.cpp\
1236
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/ARMTargetMachine.cpp\
1237
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/NEONMoveFix.cpp\
1238
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/NEONPreAllocPass.cpp\
1239
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp\
1240
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/Thumb1InstrInfo.cpp\
1241
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp\
1242
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp\
1243
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/Thumb2InstrInfo.cpp\
1244
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp\
1245
+@BUILD_ARM_TRUE@	llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
1268 1246
 
1269 1247
 
1270 1248
 # End of Targets
1271
-libllvmtarget_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1272
-libllvmtarget_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1273
-libllvmtarget_la_SOURCES = \
1274
-  llvm/lib/Target/SubtargetFeature.cpp\
1275
-  llvm/lib/Target/Target.cpp\
1276
-  llvm/lib/Target/TargetData.cpp\
1277
-  llvm/lib/Target/TargetELFWriterInfo.cpp\
1278
-  llvm/lib/Target/TargetFrameInfo.cpp\
1279
-  llvm/lib/Target/TargetInstrInfo.cpp\
1280
-  llvm/lib/Target/TargetIntrinsicInfo.cpp\
1281
-  llvm/lib/Target/TargetLoweringObjectFile.cpp\
1282
-  llvm/lib/Target/TargetMachOWriterInfo.cpp\
1283
-  llvm/lib/Target/TargetMachine.cpp\
1284
-  llvm/lib/Target/TargetRegisterInfo.cpp\
1285
-  llvm/lib/Target/TargetSubtarget.cpp
1286
-
1287
-libllvmmc_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1288
-libllvmmc_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1289
-libllvmmc_la_SOURCES = \
1290
-  llvm/lib/MC/MCAsmInfo.cpp\
1291
-  llvm/lib/MC/MCAsmInfoCOFF.cpp\
1292
- llvm/lib/MC/MCAsmInfoDarwin.cpp\
1293
- llvm/lib/MC/MCAsmLexer.cpp\
1294
- llvm/lib/MC/MCAsmParser.cpp\
1295
- llvm/lib/MC/MCAsmStreamer.cpp\
1296
- llvm/lib/MC/MCAssembler.cpp\
1297
- llvm/lib/MC/MCCodeEmitter.cpp\
1298
- llvm/lib/MC/MCContext.cpp\
1299
- llvm/lib/MC/MCExpr.cpp\
1300
- llvm/lib/MC/MCInst.cpp\
1301
- llvm/lib/MC/MCMachOStreamer.cpp\
1302
- llvm/lib/MC/MCNullStreamer.cpp\
1303
- llvm/lib/MC/MCSection.cpp\
1304
- llvm/lib/MC/MCSectionELF.cpp\
1305
- llvm/lib/MC/MCSectionMachO.cpp\
1306
- llvm/lib/MC/MCStreamer.cpp\
1307
- llvm/lib/MC/MCSymbol.cpp\
1308
- llvm/lib/MC/MCValue.cpp\
1309
- llvm/lib/MC/TargetAsmParser.cpp
1310
-
1311
-libllvmsdag_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1312
-libllvmsdag_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1313
-libllvmsdag_la_SOURCES = \
1314
-  llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp\
1315
-  llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp\
1316
-  llvm/lib/CodeGen/SelectionDAG/FastISel.cpp\
1317
-  llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp\
1318
-  llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp\
1319
-  llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp\
1320
-  llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp\
1321
-  llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp\
1322
-  llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp\
1323
-  llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp\
1324
-  llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp\
1325
-  llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp\
1326
-  llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp\
1327
-  llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp\
1328
-  llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp\
1329
-  llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp\
1330
-  llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp\
1331
-  llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp\
1332
-  llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp\
1333
-  llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp\
1334
-  llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp\
1335
-  llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp\
1336
-  llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp\
1337
-  llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp\
1338
-  llvm/lib/CodeGen/AsmPrinter/DwarfLabel.cpp\
1339
-  llvm/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp\
1340
-  llvm/lib/CodeGen/AsmPrinter/DIE.cpp\
1341
-  llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
1342
-
1343
-libllvmipa_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1344
-libllvmipa_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1345
-libllvmipa_la_SOURCES = \
1346
- llvm/lib/Analysis/AliasAnalysis.cpp\
1347
- llvm/lib/Analysis/AliasSetTracker.cpp\
1348
- llvm/lib/Analysis/BasicAliasAnalysis.cpp\
1349
- llvm/lib/Analysis/CaptureTracking.cpp\
1350
- llvm/lib/Analysis/ConstantFolding.cpp\
1351
- llvm/lib/Analysis/DebugInfo.cpp\
1352
- llvm/lib/Analysis/IVUsers.cpp\
1353
- llvm/lib/Analysis/InstructionSimplify.cpp\
1354
- llvm/lib/Analysis/LiveValues.cpp\
1355
- llvm/lib/Analysis/LoopDependenceAnalysis.cpp\
1356
- llvm/lib/Analysis/LoopInfo.cpp\
1357
- llvm/lib/Analysis/LoopPass.cpp\
1358
- llvm/lib/Analysis/MemoryBuiltins.cpp\
1359
- llvm/lib/Analysis/MemoryDependenceAnalysis.cpp\
1360
- llvm/lib/Analysis/PHITransAddr.cpp\
1361
- llvm/lib/Analysis/ProfileInfo.cpp\
1362
- llvm/lib/Analysis/ScalarEvolution.cpp\
1363
- llvm/lib/Analysis/ScalarEvolutionExpander.cpp\
1364
- llvm/lib/Analysis/ValueTracking.cpp\
1365
- llvm/lib/Analysis/IPA/CallGraph.cpp
1366
-
1367
-libllvmcodegen_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1368
-libllvmcodegen_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1249
+libllvmjit_la_SOURCES = \
1250
+	llvm/lib/CodeGen/ELFWriter.cpp\
1251
+	llvm/lib/CodeGen/MachineFunction.cpp\
1252
+	llvm/lib/CodeGen/MachineInstr.cpp\
1253
+	llvm/lib/CodeGen/MachineModuleInfo.cpp\
1254
+	llvm/lib/ExecutionEngine/ExecutionEngine.cpp\
1255
+	llvm/lib/ExecutionEngine/JIT/Intercept.cpp\
1256
+	llvm/lib/ExecutionEngine/JIT/JIT.cpp\
1257
+	llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp\
1258
+	llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp\
1259
+	llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp\
1260
+	llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp\
1261
+	llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp\
1262
+	llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp\
1263
+	llvm/lib/MC/MCAsmInfo.cpp\
1264
+	llvm/lib/Support/APFloat.cpp\
1265
+	llvm/lib/Support/APInt.cpp\
1266
+	llvm/lib/Support/Allocator.cpp\
1267
+	llvm/lib/Support/CommandLine.cpp\
1268
+	llvm/lib/Support/ConstantRange.cpp\
1269
+	llvm/lib/Support/Debug.cpp\
1270
+	llvm/lib/Support/Dwarf.cpp\
1271
+	llvm/lib/Support/ErrorHandling.cpp\
1272
+	llvm/lib/Support/FoldingSet.cpp\
1273
+	llvm/lib/Support/FormattedStream.cpp\
1274
+	llvm/lib/Support/ManagedStatic.cpp\
1275
+	llvm/lib/Support/MemoryBuffer.cpp\
1276
+	llvm/lib/Support/PrettyStackTrace.cpp\
1277
+	llvm/lib/Support/SmallPtrSet.cpp\
1278
+	llvm/lib/Support/Statistic.cpp\
1279
+	llvm/lib/Support/StringExtras.cpp\
1280
+	llvm/lib/Support/StringMap.cpp\
1281
+	llvm/lib/Support/StringPool.cpp\
1282
+	llvm/lib/Support/TargetRegistry.cpp\
1283
+	llvm/lib/Support/Timer.cpp\
1284
+	llvm/lib/Support/Triple.cpp\
1285
+	llvm/lib/Support/Twine.cpp\
1286
+	llvm/lib/Support/raw_ostream.cpp\
1287
+	llvm/lib/Target/SubtargetFeature.cpp\
1288
+	llvm/lib/Target/TargetData.cpp\
1289
+	llvm/lib/Target/TargetMachine.cpp\
1290
+	llvm/lib/VMCore/AsmWriter.cpp\
1291
+	llvm/lib/VMCore/Attributes.cpp\
1292
+	llvm/lib/VMCore/AutoUpgrade.cpp\
1293
+	llvm/lib/VMCore/BasicBlock.cpp\
1294
+	llvm/lib/VMCore/ConstantFold.cpp\
1295
+	llvm/lib/VMCore/Constants.cpp\
1296
+	llvm/lib/VMCore/Core.cpp\
1297
+	llvm/lib/VMCore/Dominators.cpp\
1298
+	llvm/lib/VMCore/Function.cpp\
1299
+	llvm/lib/VMCore/Globals.cpp\
1300
+	llvm/lib/VMCore/InlineAsm.cpp\
1301
+	llvm/lib/VMCore/Instruction.cpp\
1302
+	llvm/lib/VMCore/Instructions.cpp\
1303
+	llvm/lib/VMCore/IntrinsicInst.cpp\
1304
+	llvm/lib/VMCore/LLVMContext.cpp\
1305
+	llvm/lib/VMCore/LeakDetector.cpp\
1306
+	llvm/lib/VMCore/Mangler.cpp\
1307
+	llvm/lib/VMCore/Metadata.cpp\
1308
+	llvm/lib/VMCore/Module.cpp\
1309
+	llvm/lib/VMCore/ModuleProvider.cpp\
1310
+	llvm/lib/VMCore/Pass.cpp\
1311
+	llvm/lib/VMCore/PassManager.cpp\
1312
+	llvm/lib/VMCore/PrintModulePass.cpp\
1313
+	llvm/lib/VMCore/Type.cpp\
1314
+	llvm/lib/VMCore/TypeSymbolTable.cpp\
1315
+	llvm/lib/VMCore/Use.cpp\
1316
+	llvm/lib/VMCore/Value.cpp\
1317
+	llvm/lib/VMCore/ValueSymbolTable.cpp\
1318
+	llvm/lib/VMCore/ValueTypes.cpp\
1319
+	llvm/lib/VMCore/Verifier.cpp
1320
+
1369 1321
 libllvmcodegen_la_SOURCES = \
1370
-  llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp\
1371
-  llvm/lib/CodeGen/BranchFolding.cpp\
1372
-  llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp\
1373
-  llvm/lib/CodeGen/CodePlacementOpt.cpp\
1374
-  llvm/lib/CodeGen/DeadMachineInstructionElim.cpp\
1375
-  llvm/lib/CodeGen/DwarfEHPrepare.cpp\
1376
-  llvm/lib/CodeGen/ELFCodeEmitter.cpp\
1377
-  llvm/lib/CodeGen/ELFWriter.cpp\
1378
-  llvm/lib/CodeGen/ExactHazardRecognizer.cpp\
1379
-  llvm/lib/CodeGen/GCMetadata.cpp\
1380
-  llvm/lib/CodeGen/GCMetadataPrinter.cpp\
1381
-  llvm/lib/CodeGen/GCStrategy.cpp\
1382
-  llvm/lib/CodeGen/IfConversion.cpp\
1383
-  llvm/lib/CodeGen/IntrinsicLowering.cpp\
1384
-  llvm/lib/CodeGen/LLVMTargetMachine.cpp\
1385
-  llvm/lib/CodeGen/LatencyPriorityQueue.cpp\
1386
-  llvm/lib/CodeGen/LiveInterval.cpp\
1387
-  llvm/lib/CodeGen/LiveIntervalAnalysis.cpp\
1388
-  llvm/lib/CodeGen/LiveStackAnalysis.cpp\
1389
- llvm/lib/CodeGen/LiveVariables.cpp\
1390
- llvm/lib/CodeGen/LowerSubregs.cpp\
1391
- llvm/lib/CodeGen/MachineBasicBlock.cpp\
1392
- llvm/lib/CodeGen/MachineDominators.cpp\
1393
- llvm/lib/CodeGen/MachineFunction.cpp\
1394
- llvm/lib/CodeGen/MachineFunctionAnalysis.cpp\
1395
- llvm/lib/CodeGen/MachineFunctionPass.cpp\
1396
- llvm/lib/CodeGen/MachineInstr.cpp\
1397
- llvm/lib/CodeGen/MachineLICM.cpp\
1398
- llvm/lib/CodeGen/MachineLoopInfo.cpp\
1399
- llvm/lib/CodeGen/MachineModuleInfo.cpp\
1400
- llvm/lib/CodeGen/MachineModuleInfoImpls.cpp\
1401
- llvm/lib/CodeGen/MachinePassRegistry.cpp\
1402
- llvm/lib/CodeGen/MachineRegisterInfo.cpp\
1403
- llvm/lib/CodeGen/MachineSink.cpp\
1404
- llvm/lib/CodeGen/MachineSSAUpdater.cpp\
1405
- llvm/lib/CodeGen/MachineVerifier.cpp\
1406
- llvm/lib/CodeGen/MaxStackAlignment.cpp\
1407
- llvm/lib/CodeGen/ObjectCodeEmitter.cpp\
1408
- llvm/lib/CodeGen/OcamlGC.cpp\
1409
- llvm/lib/CodeGen/PHIElimination.cpp\
1410
- llvm/lib/CodeGen/Passes.cpp\
1411
- llvm/lib/CodeGen/PostRASchedulerList.cpp\
1412
- llvm/lib/CodeGen/PreAllocSplitting.cpp\
1413
- llvm/lib/CodeGen/ProcessImplicitDefs.cpp\
1414
- llvm/lib/CodeGen/PrologEpilogInserter.cpp\
1415
- llvm/lib/CodeGen/PseudoSourceValue.cpp\
1416
- llvm/lib/CodeGen/RegAllocLinearScan.cpp\
1417
- llvm/lib/CodeGen/RegAllocLocal.cpp\
1418
- llvm/lib/CodeGen/RegAllocPBQP.cpp\
1419
- llvm/lib/CodeGen/RegisterCoalescer.cpp\
1420
- llvm/lib/CodeGen/RegisterScavenging.cpp\
1421
- llvm/lib/CodeGen/ScheduleDAG.cpp\
1422
- llvm/lib/CodeGen/ScheduleDAGEmit.cpp\
1423
- llvm/lib/CodeGen/ScheduleDAGInstrs.cpp\
1424
- llvm/lib/CodeGen/ScheduleDAGPrinter.cpp\
1425
- llvm/lib/CodeGen/ShadowStackGC.cpp\
1426
- llvm/lib/CodeGen/ShrinkWrapping.cpp\
1427
- llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp\
1428
- llvm/lib/CodeGen/SjLjEHPrepare.cpp\
1429
- llvm/lib/CodeGen/SlotIndexes.cpp\
1430
- llvm/lib/CodeGen/Spiller.cpp\
1431
- llvm/lib/CodeGen/StackProtector.cpp\
1432
- llvm/lib/CodeGen/StackSlotColoring.cpp\
1433
- llvm/lib/CodeGen/StrongPHIElimination.cpp\
1434
- llvm/lib/CodeGen/TailDuplication.cpp\
1435
- llvm/lib/CodeGen/TargetInstrInfoImpl.cpp\
1436
- llvm/lib/CodeGen/TwoAddressInstructionPass.cpp\
1437
- llvm/lib/CodeGen/UnreachableBlockElim.cpp\
1438
- llvm/lib/CodeGen/VirtRegMap.cpp\
1439
- llvm/lib/CodeGen/VirtRegRewriter.cpp
1440
-
1441
-libllvmscalar_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1442
-libllvmscalar_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1443
-libllvmscalar_la_SOURCES = \
1444
- llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp\
1445
- llvm/lib/Transforms/Scalar/DCE.cpp\
1446
- llvm/lib/Transforms/Scalar/GEPSplitter.cpp\
1447
- llvm/lib/Transforms/Scalar/GVN.cpp\
1448
- llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp\
1449
- llvm/lib/Transforms/Scalar/ConstantProp.cpp\
1450
- llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
1451
-
1452
-libllvmtransformutils_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1453
-libllvmtransformutils_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1454
-libllvmtransformutils_la_SOURCES = \
1455
-  llvm/lib/Transforms/Utils/AddrModeMatcher.cpp\
1456
-  llvm/lib/Transforms/Utils/BasicBlockUtils.cpp\
1457
-  llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp\
1458
-  llvm/lib/Transforms/Utils/DemoteRegToStack.cpp\
1459
-  llvm/lib/Transforms/Utils/LCSSA.cpp\
1460
-  llvm/lib/Transforms/Utils/Local.cpp\
1461
-  llvm/lib/Transforms/Utils/LoopSimplify.cpp\
1462
-  llvm/lib/Transforms/Utils/LowerInvoke.cpp\
1463
-  llvm/lib/Transforms/Utils/LowerSwitch.cpp\
1464
-  llvm/lib/Transforms/Utils/Mem2Reg.cpp\
1465
-  llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp\
1466
-  llvm/lib/Transforms/Utils/SimplifyCFG.cpp\
1467
-  llvm/lib/Transforms/Utils/SSAUpdater.cpp\
1468
-  llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
1469
-
1470
-libllvmexecutionengine_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1471
-libllvmexecutionengine_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1472
-libllvmexecutionengine_la_SOURCES = \
1473
- llvm/lib/ExecutionEngine/ExecutionEngine.cpp\
1474
- llvm/lib/ExecutionEngine/JIT/Intercept.cpp\
1475
- llvm/lib/ExecutionEngine/JIT/JIT.cpp\
1476
- llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp\
1477
- llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp\
1478
- llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp\
1479
- llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp\
1480
- llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
1481
-
1482
-# llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp
1322
+	llvm/lib/CodeGen/LLVMTargetMachine.cpp\
1323
+	llvm/lib/CodeGen/LiveVariables.cpp\
1324
+	llvm/lib/CodeGen/MachineBasicBlock.cpp\
1325
+	llvm/lib/CodeGen/MachineFunctionPass.cpp\
1326
+	llvm/lib/CodeGen/MachineRegisterInfo.cpp\
1327
+	llvm/lib/CodeGen/MaxStackAlignment.cpp\
1328
+	llvm/lib/CodeGen/ObjectCodeEmitter.cpp\
1329
+	llvm/lib/CodeGen/PseudoSourceValue.cpp\
1330
+	llvm/lib/CodeGen/RegisterScavenging.cpp\
1331
+	llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp\
1332
+	llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp\
1333
+	llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp\
1334
+	llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp\
1335
+	llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp\
1336
+	llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp\
1337
+	llvm/lib/CodeGen/TargetInstrInfoImpl.cpp\
1338
+	llvm/lib/MC/MCAsmInfoDarwin.cpp\
1339
+	llvm/lib/Support/StringRef.cpp\
1340
+	llvm/lib/Target/TargetFrameInfo.cpp\
1341
+	llvm/lib/Target/TargetInstrInfo.cpp\
1342
+	llvm/lib/Target/TargetLoweringObjectFile.cpp\
1343
+	llvm/lib/Target/TargetRegisterInfo.cpp\
1344
+	llvm/lib/Target/TargetSubtarget.cpp
1345
+
1483 1346
 
1484 1347
 # Used only by make check
1485
-libllvmbitreader_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1486
-libllvmbitreader_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1487 1348
 libllvmbitreader_la_SOURCES = \
1488 1349
  llvm/lib/Bitcode/Reader/BitReader.cpp\
1489 1350
  llvm/lib/Bitcode/Reader/BitcodeReader.cpp\
... ...
@@ -1491,8 +1048,6 @@ libllvmbitreader_la_SOURCES = \
1491 1491
  llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp\
1492 1492
  llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp
1493 1493
 
1494
-libllvmbitwriter_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1495
-libllvmbitwriter_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1496 1494
 libllvmbitwriter_la_SOURCES = \
1497 1495
  llvm/lib/Bitcode/Writer/BitWriter.cpp\
1498 1496
  llvm/lib/Bitcode/Writer/BitcodeWriter.cpp\
... ...
@@ -1502,23 +1057,19 @@ libllvmbitwriter_la_SOURCES = \
1502 1502
  llvm/lib/Bitcode/Writer/SerializeAPInt.cpp\
1503 1503
  llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
1504 1504
 
1505
-libllvmasmparser_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1506
-libllvmasmparser_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1507 1505
 libllvmasmparser_la_SOURCES = \
1508 1506
  llvm/lib/AsmParser/LLLexer.cpp\
1509 1507
  llvm/lib/AsmParser/LLParser.cpp\
1510 1508
  llvm/lib/AsmParser/Parser.cpp
1511 1509
 
1512
-libllvminterpreter_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
1513
-libllvminterpreter_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1510
+
1514 1511
 #TODO: configure check -Wno-missing-field-initializers -Wno-variadic-macros
1515 1512
 libllvminterpreter_la_SOURCES = \
1516 1513
     llvm/lib/ExecutionEngine/Interpreter/Execution.cpp\
1517 1514
     llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp\
1518 1515
     llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
1519 1516
 
1520
-libgoogletest_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
1521
-libgoogletest_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1517
+
1522 1518
 # -Wno-missing-field-initializers -Wno-variadic-macros
1523 1519
 libgoogletest_la_SOURCES = \
1524 1520
     llvm/utils/unittest/googletest/gtest-death-test.cc\
... ...
@@ -1529,8 +1080,7 @@ libgoogletest_la_SOURCES = \
1529 1529
     llvm/utils/unittest/googletest/gtest.cc\
1530 1530
     llvm/utils/unittest/UnitTestMain/TestMain.cpp
1531 1531
 
1532
-llvmunittest_ADT_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
1533
-llvmunittest_ADT_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1532
+
1534 1533
 #-Wno-variadic-macros
1535 1534
 llvmunittest_ADT_LDADD = libgoogletest.la libllvmcore.la libllvmsupport.la libllvmsystem.la
1536 1535
 llvmunittest_ADT_SOURCES = \
... ...
@@ -1548,7 +1098,6 @@ llvmunittest_ADT_SOURCES = \
1548 1548
     llvm/unittests/ADT/TwineTest.cpp
1549 1549
 
1550 1550
 llvmunittest_Support_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
1551
-llvmunittest_Support_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1552 1551
 #-Wno-variadic-macros
1553 1552
 llvmunittest_Support_LDADD = libgoogletest.la libllvmcore.la libllvmsupport.la libllvmsystem.la
1554 1553
 llvmunittest_Support_SOURCES = \
... ...
@@ -1561,7 +1110,6 @@ llvmunittest_Support_SOURCES = \
1561 1561
     llvm/unittests/Support/raw_ostream_test.cpp
1562 1562
 
1563 1563
 llvmunittest_VMCore_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
1564
-llvmunittest_VMCore_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1565 1564
 #-Wno-variadic-macros
1566 1565
 llvmunittest_VMCore_LDADD = libgoogletest.la libllvmtarget.la libllvmipa.la libllvmcore.la libllvmsupport.la libllvmsystem.la
1567 1566
 llvmunittest_VMCore_SOURCES = \
... ...
@@ -1571,7 +1119,6 @@ llvmunittest_VMCore_SOURCES = \
1571 1571
     llvm/unittests/VMCore/PassManagerTest.cpp
1572 1572
 
1573 1573
 llvmunittest_JIT_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
1574
-llvmunittest_JIT_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1575 1574
 #-Wno-variadic-macros
1576 1575
 llvmunittest_JIT_LDADD = libgoogletest.la libllvmasmparser.la $(libclamavcxx_la_LIBADD)
1577 1576
 llvmunittest_JIT_SOURCES = \
... ...
@@ -1580,7 +1127,6 @@ llvmunittest_JIT_SOURCES = \
1580 1580
     llvm/unittests/ExecutionEngine/JIT/JITTest.cpp
1581 1581
 
1582 1582
 llvmunittest_ExecutionEngine_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/utils/unittest/googletest/include
1583
-llvmunittest_ExecutionEngine_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1584 1583
 #-Wno-variadic-macros
1585 1584
 llvmunittest_ExecutionEngine_LDADD = libgoogletest.la libllvminterpreter.la $(libclamavcxx_la_LIBADD)
1586 1585
 llvmunittest_ExecutionEngine_SOURCES = \
... ...
@@ -1608,14 +1154,13 @@ TESTS_ENVIRONMENT = export GMAKE=@GMAKE@;
1608 1608
 libllvmasmprinter_la_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS) -I$(top_srcdir)/llvm/lib/Target/X86 \
1609 1609
 			      -I$(top_srcdir)/llvm/lib/Target/PowerPC -I$(top_srcdir)/llvm/lib/Target/ARM
1610 1610
 
1611
-libllvmasmprinter_la_CXXFLAGS = $(LLVM_CXXFLAGS) -fno-exceptions
1612 1611
 libllvmasmprinter_la_SOURCES =  \
1613 1612
 	llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp \
1614 1613
 	llvm/lib/CodeGen/ELFCodeEmitter.cpp \
1615 1614
 	llvm/lib/CodeGen/ELFWriter.cpp \
1616 1615
 	llvm/lib/CodeGen/MachOCodeEmitter.cpp \
1617
-	llvm/lib/CodeGen/MachOWriter.cpp $(am__append_10) \
1618
-	$(am__append_11) $(am__append_12)
1616
+	llvm/lib/CodeGen/MachOWriter.cpp $(am__append_13) \
1617
+	$(am__append_14) $(am__append_15)
1619 1618
 lli_CPPFLAGS = $(LLVM_INCLUDES) $(LLVM_DEFS)
1620 1619
 lli_CXXFLAGS = $(LLVM_CXXFLAGS)
1621 1620
 lli_LDADD = libllvmbitreader.la libllvminterpreter.la $(libclamavcxx_la_LIBADD)
... ...
@@ -1720,45 +1265,31 @@ clean-noinstLTLIBRARIES:
1720 1720
 libclamavcxx.la: $(libclamavcxx_la_OBJECTS) $(libclamavcxx_la_DEPENDENCIES) 
1721 1721
 	$(AM_V_CXXLD)$(libclamavcxx_la_LINK)  $(libclamavcxx_la_OBJECTS) $(libclamavcxx_la_LIBADD) $(LIBS)
1722 1722
 libgoogletest.la: $(libgoogletest_la_OBJECTS) $(libgoogletest_la_DEPENDENCIES) 
1723
-	$(AM_V_CXXLD)$(libgoogletest_la_LINK)  $(libgoogletest_la_OBJECTS) $(libgoogletest_la_LIBADD) $(LIBS)
1723
+	$(AM_V_CXXLD)$(CXXLINK)  $(libgoogletest_la_OBJECTS) $(libgoogletest_la_LIBADD) $(LIBS)
1724
+libllvmarmcodegen.la: $(libllvmarmcodegen_la_OBJECTS) $(libllvmarmcodegen_la_DEPENDENCIES) 
1725
+	$(AM_V_CXXLD)$(CXXLINK) $(am_libllvmarmcodegen_la_rpath) $(libllvmarmcodegen_la_OBJECTS) $(libllvmarmcodegen_la_LIBADD) $(LIBS)
1724 1726
 libllvmasmparser.la: $(libllvmasmparser_la_OBJECTS) $(libllvmasmparser_la_DEPENDENCIES) 
1725
-	$(AM_V_CXXLD)$(libllvmasmparser_la_LINK)  $(libllvmasmparser_la_OBJECTS) $(libllvmasmparser_la_LIBADD) $(LIBS)
1727
+	$(AM_V_CXXLD)$(CXXLINK)  $(libllvmasmparser_la_OBJECTS) $(libllvmasmparser_la_LIBADD) $(LIBS)
1726 1728
 libllvmasmprinter.la: $(libllvmasmprinter_la_OBJECTS) $(libllvmasmprinter_la_DEPENDENCIES) 
1727
-	$(AM_V_CXXLD)$(libllvmasmprinter_la_LINK)  $(libllvmasmprinter_la_OBJECTS) $(libllvmasmprinter_la_LIBADD) $(LIBS)
1729
+	$(AM_V_CXXLD)$(CXXLINK)  $(libllvmasmprinter_la_OBJECTS) $(libllvmasmprinter_la_LIBADD) $(LIBS)
1728 1730
 libllvmbitreader.la: $(libllvmbitreader_la_OBJECTS) $(libllvmbitreader_la_DEPENDENCIES) 
1729
-	$(AM_V_CXXLD)$(libllvmbitreader_la_LINK)  $(libllvmbitreader_la_OBJECTS) $(libllvmbitreader_la_LIBADD) $(LIBS)
1731
+	$(AM_V_CXXLD)$(CXXLINK)  $(libllvmbitreader_la_OBJECTS) $(libllvmbitreader_la_LIBADD) $(LIBS)
1730 1732
 libllvmbitwriter.la: $(libllvmbitwriter_la_OBJECTS) $(libllvmbitwriter_la_DEPENDENCIES) 
1731
-	$(AM_V_CXXLD)$(libllvmbitwriter_la_LINK)  $(libllvmbitwriter_la_OBJECTS) $(libllvmbitwriter_la_LIBADD) $(LIBS)
1733
+	$(AM_V_CXXLD)$(CXXLINK)  $(libllvmbitwriter_la_OBJECTS) $(libllvmbitwriter_la_LIBADD) $(LIBS)
1732 1734
 libllvmcodegen.la: $(libllvmcodegen_la_OBJECTS) $(libllvmcodegen_la_DEPENDENCIES) 
1733
-	$(AM_V_CXXLD)$(libllvmcodegen_la_LINK)  $(libllvmcodegen_la_OBJECTS) $(libllvmcodegen_la_LIBADD) $(LIBS)
1734
-libllvmcore.la: $(libllvmcore_la_OBJECTS) $(libllvmcore_la_DEPENDENCIES) 
1735
-	$(AM_V_CXXLD)$(libllvmcore_la_LINK)  $(libllvmcore_la_OBJECTS) $(libllvmcore_la_LIBADD) $(LIBS)
1736
-libllvmexecutionengine.la: $(libllvmexecutionengine_la_OBJECTS) $(libllvmexecutionengine_la_DEPENDENCIES) 
1737
-	$(AM_V_CXXLD)$(libllvmexecutionengine_la_LINK)  $(libllvmexecutionengine_la_OBJECTS) $(libllvmexecutionengine_la_LIBADD) $(LIBS)
1735
+	$(AM_V_CXXLD)$(CXXLINK)  $(libllvmcodegen_la_OBJECTS) $(libllvmcodegen_la_LIBADD) $(LIBS)
1738 1736
 libllvminterpreter.la: $(libllvminterpreter_la_OBJECTS) $(libllvminterpreter_la_DEPENDENCIES) 
1739
-	$(AM_V_CXXLD)$(libllvminterpreter_la_LINK)  $(libllvminterpreter_la_OBJECTS) $(libllvminterpreter_la_LIBADD) $(LIBS)
1740
-libllvmipa.la: $(libllvmipa_la_OBJECTS) $(libllvmipa_la_DEPENDENCIES) 
1741
-	$(AM_V_CXXLD)$(libllvmipa_la_LINK)  $(libllvmipa_la_OBJECTS) $(libllvmipa_la_LIBADD) $(LIBS)
1742
-libllvmmc.la: $(libllvmmc_la_OBJECTS) $(libllvmmc_la_DEPENDENCIES) 
1743
-	$(AM_V_CXXLD)$(libllvmmc_la_LINK)  $(libllvmmc_la_OBJECTS) $(libllvmmc_la_LIBADD) $(LIBS)
1744
-libllvmscalar.la: $(libllvmscalar_la_OBJECTS) $(libllvmscalar_la_DEPENDENCIES) 
1745
-	$(AM_V_CXXLD)$(libllvmscalar_la_LINK)  $(libllvmscalar_la_OBJECTS) $(libllvmscalar_la_LIBADD) $(LIBS)
1746
-libllvmsdag.la: $(libllvmsdag_la_OBJECTS) $(libllvmsdag_la_DEPENDENCIES) 
1747
-	$(AM_V_CXXLD)$(libllvmsdag_la_LINK)  $(libllvmsdag_la_OBJECTS) $(libllvmsdag_la_LIBADD) $(LIBS)
1737
+	$(AM_V_CXXLD)$(CXXLINK)  $(libllvminterpreter_la_OBJECTS) $(libllvminterpreter_la_LIBADD) $(LIBS)
1738
+libllvmjit.la: $(libllvmjit_la_OBJECTS) $(libllvmjit_la_DEPENDENCIES) 
1739
+	$(AM_V_CXXLD)$(CXXLINK)  $(libllvmjit_la_OBJECTS) $(libllvmjit_la_LIBADD) $(LIBS)
1740
+libllvmpowerpccodegen.la: $(libllvmpowerpccodegen_la_OBJECTS) $(libllvmpowerpccodegen_la_DEPENDENCIES) 
1741
+	$(AM_V_CXXLD)$(CXXLINK) $(am_libllvmpowerpccodegen_la_rpath) $(libllvmpowerpccodegen_la_OBJECTS) $(libllvmpowerpccodegen_la_LIBADD) $(LIBS)
1748 1742
 libllvmsupport.la: $(libllvmsupport_la_OBJECTS) $(libllvmsupport_la_DEPENDENCIES) 
1749
-	$(AM_V_CXXLD)$(libllvmsupport_la_LINK)  $(libllvmsupport_la_OBJECTS) $(libllvmsupport_la_LIBADD) $(LIBS)
1743
+	$(AM_V_CXXLD)$(CXXLINK)  $(libllvmsupport_la_OBJECTS) $(libllvmsupport_la_LIBADD) $(LIBS)
1750 1744
 libllvmsystem.la: $(libllvmsystem_la_OBJECTS) $(libllvmsystem_la_DEPENDENCIES) 
1751 1745
 	$(AM_V_CXXLD)$(libllvmsystem_la_LINK)  $(libllvmsystem_la_OBJECTS) $(libllvmsystem_la_LIBADD) $(LIBS)
1752
-libllvmtarget.la: $(libllvmtarget_la_OBJECTS) $(libllvmtarget_la_DEPENDENCIES) 
1753
-	$(AM_V_CXXLD)$(libllvmtarget_la_LINK)  $(libllvmtarget_la_OBJECTS) $(libllvmtarget_la_LIBADD) $(LIBS)
1754
-libllvmtargetarm.la: $(libllvmtargetarm_la_OBJECTS) $(libllvmtargetarm_la_DEPENDENCIES) 
1755
-	$(AM_V_CXXLD)$(libllvmtargetarm_la_LINK) $(am_libllvmtargetarm_la_rpath) $(libllvmtargetarm_la_OBJECTS) $(libllvmtargetarm_la_LIBADD) $(LIBS)
1756
-libllvmtargetppc.la: $(libllvmtargetppc_la_OBJECTS) $(libllvmtargetppc_la_DEPENDENCIES) 
1757
-	$(AM_V_CXXLD)$(libllvmtargetppc_la_LINK) $(am_libllvmtargetppc_la_rpath) $(libllvmtargetppc_la_OBJECTS) $(libllvmtargetppc_la_LIBADD) $(LIBS)
1758
-libllvmtargetx86.la: $(libllvmtargetx86_la_OBJECTS) $(libllvmtargetx86_la_DEPENDENCIES) 
1759
-	$(AM_V_CXXLD)$(libllvmtargetx86_la_LINK) $(am_libllvmtargetx86_la_rpath) $(libllvmtargetx86_la_OBJECTS) $(libllvmtargetx86_la_LIBADD) $(LIBS)
1760
-libllvmtransformutils.la: $(libllvmtransformutils_la_OBJECTS) $(libllvmtransformutils_la_DEPENDENCIES) 
1761
-	$(AM_V_CXXLD)$(libllvmtransformutils_la_LINK)  $(libllvmtransformutils_la_OBJECTS) $(libllvmtransformutils_la_LIBADD) $(LIBS)
1746
+libllvmx86codegen.la: $(libllvmx86codegen_la_OBJECTS) $(libllvmx86codegen_la_DEPENDENCIES) 
1747
+	$(AM_V_CXXLD)$(CXXLINK) $(am_libllvmx86codegen_la_rpath) $(libllvmx86codegen_la_OBJECTS) $(libllvmx86codegen_la_LIBADD) $(LIBS)
1762 1748
 
1763 1749
 clean-checkPROGRAMS:
1764 1750
 	@list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
... ...
@@ -1797,19 +1328,19 @@ llvm-dis$(EXEEXT): $(llvm_dis_OBJECTS) $(llvm_dis_DEPENDENCIES)
1797 1797
 	$(AM_V_CXXLD)$(llvm_dis_LINK) $(llvm_dis_OBJECTS) $(llvm_dis_LDADD) $(LIBS)
1798 1798
 llvmunittest_ADT$(EXEEXT): $(llvmunittest_ADT_OBJECTS) $(llvmunittest_ADT_DEPENDENCIES) 
1799 1799
 	@rm -f llvmunittest_ADT$(EXEEXT)
1800
-	$(AM_V_CXXLD)$(llvmunittest_ADT_LINK) $(llvmunittest_ADT_OBJECTS) $(llvmunittest_ADT_LDADD) $(LIBS)
1800
+	$(AM_V_CXXLD)$(CXXLINK) $(llvmunittest_ADT_OBJECTS) $(llvmunittest_ADT_LDADD) $(LIBS)
1801 1801
 llvmunittest_ExecutionEngine$(EXEEXT): $(llvmunittest_ExecutionEngine_OBJECTS) $(llvmunittest_ExecutionEngine_DEPENDENCIES) 
1802 1802
 	@rm -f llvmunittest_ExecutionEngine$(EXEEXT)
1803
-	$(AM_V_CXXLD)$(llvmunittest_ExecutionEngine_LINK) $(llvmunittest_ExecutionEngine_OBJECTS) $(llvmunittest_ExecutionEngine_LDADD) $(LIBS)
1803
+	$(AM_V_CXXLD)$(CXXLINK) $(llvmunittest_ExecutionEngine_OBJECTS) $(llvmunittest_ExecutionEngine_LDADD) $(LIBS)
1804 1804
 llvmunittest_JIT$(EXEEXT): $(llvmunittest_JIT_OBJECTS) $(llvmunittest_JIT_DEPENDENCIES) 
1805 1805
 	@rm -f llvmunittest_JIT$(EXEEXT)
1806
-	$(AM_V_CXXLD)$(llvmunittest_JIT_LINK) $(llvmunittest_JIT_OBJECTS) $(llvmunittest_JIT_LDADD) $(LIBS)
1806
+	$(AM_V_CXXLD)$(CXXLINK) $(llvmunittest_JIT_OBJECTS) $(llvmunittest_JIT_LDADD) $(LIBS)
1807 1807
 llvmunittest_Support$(EXEEXT): $(llvmunittest_Support_OBJECTS) $(llvmunittest_Support_DEPENDENCIES) 
1808 1808
 	@rm -f llvmunittest_Support$(EXEEXT)
1809
-	$(AM_V_CXXLD)$(llvmunittest_Support_LINK) $(llvmunittest_Support_OBJECTS) $(llvmunittest_Support_LDADD) $(LIBS)
1809
+	$(AM_V_CXXLD)$(CXXLINK) $(llvmunittest_Support_OBJECTS) $(llvmunittest_Support_LDADD) $(LIBS)
1810 1810
 llvmunittest_VMCore$(EXEEXT): $(llvmunittest_VMCore_OBJECTS) $(llvmunittest_VMCore_DEPENDENCIES) 
1811 1811
 	@rm -f llvmunittest_VMCore$(EXEEXT)
1812
-	$(AM_V_CXXLD)$(llvmunittest_VMCore_LINK) $(llvmunittest_VMCore_OBJECTS) $(llvmunittest_VMCore_LDADD) $(LIBS)
1812
+	$(AM_V_CXXLD)$(CXXLINK) $(llvmunittest_VMCore_OBJECTS) $(llvmunittest_VMCore_LDADD) $(LIBS)
1813 1813
 not$(EXEEXT): $(not_OBJECTS) $(not_DEPENDENCIES) 
1814 1814
 	@rm -f not$(EXEEXT)
1815 1815
 	$(AM_V_CXXLD)$(not_LINK) $(not_OBJECTS) $(not_LDADD) $(LIBS)
... ...
@@ -1823,19 +1354,192 @@ mostlyclean-compile:
1823 1823
 distclean-compile:
1824 1824
 	-rm -f *.tab.c
1825 1825
 
1826
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/APFloat.Plo@am__quote@
1827
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/APFloatTest.Po@am__quote@
1828
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/APInt.Plo@am__quote@
1829
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/APIntTest.Po@am__quote@
1830
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/APSInt.Plo@am__quote@
1831
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Alarm.Plo@am__quote@
1832
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Allocator.Plo@am__quote@
1833
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AsmWriter.Plo@am__quote@
1834
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Atomic.Plo@am__quote@
1835
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Attributes.Plo@am__quote@
1836
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AutoUpgrade.Plo@am__quote@
1837
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BasicBlock.Plo@am__quote@
1838
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BitReader.Plo@am__quote@
1839
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BitWriter.Plo@am__quote@
1840
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BitcodeReader.Plo@am__quote@
1841
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BitcodeWriter.Plo@am__quote@
1842
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BitcodeWriterPass.Plo@am__quote@
1843
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CallingConvLower.Plo@am__quote@
1844
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CommandLine.Plo@am__quote@
1845
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConstantFold.Plo@am__quote@
1846
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConstantRange.Plo@am__quote@
1847
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Constants.Plo@am__quote@
1848
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Core.Plo@am__quote@
1849
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DAGCombiner.Plo@am__quote@
1850
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Debug.Plo@am__quote@
1851
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DeltaAlgorithm.Plo@am__quote@
1852
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DenseMapTest.Po@am__quote@
1853
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DenseSetTest.Po@am__quote@
1854
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Deserialize.Plo@am__quote@
1855
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DeserializeAPFloat.Plo@am__quote@
1856
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DeserializeAPInt.Plo@am__quote@
1857
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Disassembler.Plo@am__quote@
1858
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Dominators.Plo@am__quote@
1859
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Dwarf.Plo@am__quote@
1860
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DynamicLibrary.Plo@am__quote@
1861
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ELFWriter.Plo@am__quote@
1862
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Errno.Plo@am__quote@
1863
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ErrorHandling.Plo@am__quote@
1864
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Execution.Plo@am__quote@
1865
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ExecutionEngine.Plo@am__quote@
1866
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ExternalFunctions.Plo@am__quote@
1826 1867
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FileCheck-FileCheck.Po@am__quote@
1868
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FileUtilities.Plo@am__quote@
1869
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FoldingSet.Plo@am__quote@
1870
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FormattedStream.Plo@am__quote@
1871
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Function.Plo@am__quote@
1872
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Globals.Plo@am__quote@
1873
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GraphWriter.Plo@am__quote@
1874
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Host.Plo@am__quote@
1875
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ImmutableSetTest.Po@am__quote@
1876
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IncludeFile.Plo@am__quote@
1877
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/InlineAsm.Plo@am__quote@
1878
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Instruction.Plo@am__quote@
1879
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Instructions.Plo@am__quote@
1880
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Intercept.Plo@am__quote@
1881
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Interpreter.Plo@am__quote@
1882
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IntrinsicInst.Plo@am__quote@
1883
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IsInf.Plo@am__quote@
1884
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IsNAN.Plo@am__quote@
1885
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JIT.Plo@am__quote@
1886
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JITDebugRegisterer.Plo@am__quote@
1887
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JITDwarfEmitter.Plo@am__quote@
1888
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JITEmitter.Plo@am__quote@
1889
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/JITMemoryManager.Plo@am__quote@
1890
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LLLexer.Plo@am__quote@
1891
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LLParser.Plo@am__quote@
1892
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LLVMContext.Plo@am__quote@
1893
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LLVMTargetMachine.Plo@am__quote@
1894
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LeakDetector.Plo@am__quote@
1895
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LiveVariables.Plo@am__quote@
1896
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MCAsmInfo.Plo@am__quote@
1897
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MCAsmInfoDarwin.Plo@am__quote@
1898
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MachineBasicBlock.Plo@am__quote@
1899
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MachineFunction.Plo@am__quote@
1900
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MachineFunctionPass.Plo@am__quote@
1901
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MachineInstr.Plo@am__quote@
1902
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MachineModuleInfo.Plo@am__quote@
1903
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MachineRegisterInfo.Plo@am__quote@
1904
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ManagedStatic.Plo@am__quote@
1905
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Mangler.Plo@am__quote@
1906
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MaxStackAlignment.Plo@am__quote@
1907
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Memory.Plo@am__quote@
1908
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MemoryBuffer.Plo@am__quote@
1909
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MemoryObject.Plo@am__quote@
1910
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Metadata.Plo@am__quote@
1911
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Module.Plo@am__quote@
1912
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ModuleProvider.Plo@am__quote@
1913
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Mutex.Plo@am__quote@
1914
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OProfileJITEventListener.Plo@am__quote@
1915
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ObjectCodeEmitter.Plo@am__quote@
1916
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Parser.Plo@am__quote@
1917
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Pass.Plo@am__quote@
1918
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PassManager.Plo@am__quote@
1919
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Path.Plo@am__quote@
1920
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PluginLoader.Plo@am__quote@
1921
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PrettyStackTrace.Plo@am__quote@
1922
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PrintModulePass.Plo@am__quote@
1923
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Process.Plo@am__quote@
1924
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Program.Plo@am__quote@
1925
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PseudoSourceValue.Plo@am__quote@
1926
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/RWMutex.Plo@am__quote@
1927
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Regex.Plo@am__quote@
1928
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/RegisterScavenging.Plo@am__quote@
1929
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SelectionDAG.Plo@am__quote@
1930
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SelectionDAGBuilder.Plo@am__quote@
1931
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SelectionDAGISel.Plo@am__quote@
1932
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Serialize.Plo@am__quote@
1933
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SerializeAPFloat.Plo@am__quote@
1934
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SerializeAPInt.Plo@am__quote@
1935
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Signals.Plo@am__quote@
1936
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SlowOperationInformer.Plo@am__quote@
1937
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SmallPtrSet.Plo@am__quote@
1938
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SmallStringTest.Po@am__quote@
1939
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SmallVectorTest.Po@am__quote@
1940
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SourceMgr.Plo@am__quote@
1941
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SparseBitVectorTest.Po@am__quote@
1942
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Statistic.Plo@am__quote@
1943
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringExtras.Plo@am__quote@
1944
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringMap.Plo@am__quote@
1945
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringMapTest.Po@am__quote@
1946
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringPool.Plo@am__quote@
1947
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringRef.Plo@am__quote@
1948
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StringRefTest.Po@am__quote@
1949
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SubtargetFeature.Plo@am__quote@
1950
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SystemUtils.Plo@am__quote@
1951
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetData.Plo@am__quote@
1952
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetFrameInfo.Plo@am__quote@
1953
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetInstrInfo.Plo@am__quote@
1954
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetInstrInfoImpl.Plo@am__quote@
1955
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetLowering.Plo@am__quote@
1956
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetLoweringObjectFile.Plo@am__quote@
1957
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetMachine.Plo@am__quote@
1958
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetRegisterInfo.Plo@am__quote@
1959
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetRegistry.Plo@am__quote@
1960
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetSelect.Plo@am__quote@
1961
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TargetSubtarget.Plo@am__quote@
1962
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TestMain.Plo@am__quote@
1963
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ThreadLocal.Plo@am__quote@
1964
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Threading.Plo@am__quote@
1965
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TimeValue.Plo@am__quote@
1966
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Timer.Plo@am__quote@
1967
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Triple.Plo@am__quote@
1968
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TripleTest.Po@am__quote@
1969
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Twine.Plo@am__quote@
1970
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TwineTest.Po@am__quote@
1971
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Type.Plo@am__quote@
1972
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TypeSymbolTable.Plo@am__quote@
1973
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Use.Plo@am__quote@
1974
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Value.Plo@am__quote@
1975
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ValueEnumerator.Plo@am__quote@
1976
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ValueSymbolTable.Plo@am__quote@
1977
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ValueTypes.Plo@am__quote@
1978
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Verifier.Plo@am__quote@
1827 1979
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/count-count.Po@am__quote@
1980
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtest-death-test.Plo@am__quote@
1981
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtest-filepath.Plo@am__quote@
1982
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtest-port.Plo@am__quote@
1983
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtest-test-part.Plo@am__quote@
1984
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtest-typed-test.Plo@am__quote@
1985
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gtest.Plo@am__quote@
1828 1986
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libclamavcxx_la-bytecode2llvm.Plo@am__quote@
1829
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgoogletest_la-TestMain.Plo@am__quote@
1830
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgoogletest_la-gtest-death-test.Plo@am__quote@
1831
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgoogletest_la-gtest-filepath.Plo@am__quote@
1832
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgoogletest_la-gtest-port.Plo@am__quote@
1833
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgoogletest_la-gtest-test-part.Plo@am__quote@
1834
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgoogletest_la-gtest-typed-test.Plo@am__quote@
1835
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgoogletest_la-gtest.Plo@am__quote@
1836
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmparser_la-LLLexer.Plo@am__quote@
1837
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmparser_la-LLParser.Plo@am__quote@
1838
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmparser_la-Parser.Plo@am__quote@
1987
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMBaseInstrInfo.Plo@am__quote@
1988
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMBaseRegisterInfo.Plo@am__quote@
1989
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMCodeEmitter.Plo@am__quote@
1990
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMConstantIslandPass.Plo@am__quote@
1991
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMConstantPoolValue.Plo@am__quote@
1992
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMExpandPseudoInsts.Plo@am__quote@
1993
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMISelDAGToDAG.Plo@am__quote@
1994
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMISelLowering.Plo@am__quote@
1995
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMInstrInfo.Plo@am__quote@
1996
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMJITInfo.Plo@am__quote@
1997
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMLoadStoreOptimizer.Plo@am__quote@
1998
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMMCAsmInfo.Plo@am__quote@
1999
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMRegisterInfo.Plo@am__quote@
2000
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMSubtarget.Plo@am__quote@
2001
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMTargetInfo.Plo@am__quote@
2002
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-ARMTargetMachine.Plo@am__quote@
2003
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-IfConversion.Plo@am__quote@
2004
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-NEONMoveFix.Plo@am__quote@
2005
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-NEONPreAllocPass.Plo@am__quote@
2006
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-Thumb1InstrInfo.Plo@am__quote@
2007
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-Thumb1RegisterInfo.Plo@am__quote@
2008
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-Thumb2ITBlockPass.Plo@am__quote@
2009
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-Thumb2InstrInfo.Plo@am__quote@
2010
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-Thumb2RegisterInfo.Plo@am__quote@
2011
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmarmcodegen_la-Thumb2SizeReduction.Plo@am__quote@
1839 2012
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmprinter_la-ARMAsmPrinter.Plo@am__quote@
1840 2013
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmprinter_la-ARMInstPrinter.Plo@am__quote@
1841 2014
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmprinter_la-ARMMCInstLower.Plo@am__quote@
... ...
@@ -1850,358 +1554,55 @@ distclean-compile:
1850 1850
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmprinter_la-X86COFFMachineModuleInfo.Plo@am__quote@
1851 1851
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmprinter_la-X86IntelInstPrinter.Plo@am__quote@
1852 1852
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmasmprinter_la-X86MCInstLower.Plo@am__quote@
1853
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitreader_la-BitReader.Plo@am__quote@
1854
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitreader_la-BitcodeReader.Plo@am__quote@
1855
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitreader_la-Deserialize.Plo@am__quote@
1856
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitreader_la-DeserializeAPFloat.Plo@am__quote@
1857
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitreader_la-DeserializeAPInt.Plo@am__quote@
1858
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitwriter_la-BitWriter.Plo@am__quote@
1859
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitwriter_la-BitcodeWriter.Plo@am__quote@
1860
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitwriter_la-BitcodeWriterPass.Plo@am__quote@
1861
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitwriter_la-Serialize.Plo@am__quote@
1862
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitwriter_la-SerializeAPFloat.Plo@am__quote@
1863
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitwriter_la-SerializeAPInt.Plo@am__quote@
1864
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmbitwriter_la-ValueEnumerator.Plo@am__quote@
1865
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-AggressiveAntiDepBreaker.Plo@am__quote@
1866
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-BranchFolding.Plo@am__quote@
1867
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-CodePlacementOpt.Plo@am__quote@
1868
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-CriticalAntiDepBreaker.Plo@am__quote@
1869
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-DeadMachineInstructionElim.Plo@am__quote@
1870
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-DwarfEHPrepare.Plo@am__quote@
1871
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ELFCodeEmitter.Plo@am__quote@
1872
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ELFWriter.Plo@am__quote@
1873
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ExactHazardRecognizer.Plo@am__quote@
1874
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-GCMetadata.Plo@am__quote@
1875
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-GCMetadataPrinter.Plo@am__quote@
1876
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-GCStrategy.Plo@am__quote@
1877
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-IfConversion.Plo@am__quote@
1878
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-IntrinsicLowering.Plo@am__quote@
1879
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-LLVMTargetMachine.Plo@am__quote@
1880
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-LatencyPriorityQueue.Plo@am__quote@
1881
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-LiveInterval.Plo@am__quote@
1882
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-LiveIntervalAnalysis.Plo@am__quote@
1883
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-LiveStackAnalysis.Plo@am__quote@
1884
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-LiveVariables.Plo@am__quote@
1885
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-LowerSubregs.Plo@am__quote@
1886
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineBasicBlock.Plo@am__quote@
1887
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineDominators.Plo@am__quote@
1888
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineFunction.Plo@am__quote@
1889
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineFunctionAnalysis.Plo@am__quote@
1890
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineFunctionPass.Plo@am__quote@
1891
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineInstr.Plo@am__quote@
1892
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineLICM.Plo@am__quote@
1893
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineLoopInfo.Plo@am__quote@
1894
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineModuleInfo.Plo@am__quote@
1895
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineModuleInfoImpls.Plo@am__quote@
1896
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachinePassRegistry.Plo@am__quote@
1897
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineRegisterInfo.Plo@am__quote@
1898
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineSSAUpdater.Plo@am__quote@
1899
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineSink.Plo@am__quote@
1900
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MachineVerifier.Plo@am__quote@
1901
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-MaxStackAlignment.Plo@am__quote@
1902
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ObjectCodeEmitter.Plo@am__quote@
1903
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-OcamlGC.Plo@am__quote@
1904
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-PHIElimination.Plo@am__quote@
1905
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-Passes.Plo@am__quote@
1906
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-PostRASchedulerList.Plo@am__quote@
1907
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-PreAllocSplitting.Plo@am__quote@
1908
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ProcessImplicitDefs.Plo@am__quote@
1909
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-PrologEpilogInserter.Plo@am__quote@
1910
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-PseudoSourceValue.Plo@am__quote@
1911
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-RegAllocLinearScan.Plo@am__quote@
1912
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-RegAllocLocal.Plo@am__quote@
1913
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-RegAllocPBQP.Plo@am__quote@
1914
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-RegisterCoalescer.Plo@am__quote@
1915
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-RegisterScavenging.Plo@am__quote@
1916
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ScheduleDAG.Plo@am__quote@
1917
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ScheduleDAGEmit.Plo@am__quote@
1918
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ScheduleDAGInstrs.Plo@am__quote@
1919
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ScheduleDAGPrinter.Plo@am__quote@
1920
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ShadowStackGC.Plo@am__quote@
1921
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-ShrinkWrapping.Plo@am__quote@
1922
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-SimpleRegisterCoalescing.Plo@am__quote@
1923
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-SjLjEHPrepare.Plo@am__quote@
1924
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-SlotIndexes.Plo@am__quote@
1925
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-Spiller.Plo@am__quote@
1926
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-StackProtector.Plo@am__quote@
1927
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-StackSlotColoring.Plo@am__quote@
1928
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-StrongPHIElimination.Plo@am__quote@
1929
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-TailDuplication.Plo@am__quote@
1930
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-TargetInstrInfoImpl.Plo@am__quote@
1931
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-TwoAddressInstructionPass.Plo@am__quote@
1932
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-UnreachableBlockElim.Plo@am__quote@
1933
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-VirtRegMap.Plo@am__quote@
1934
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcodegen_la-VirtRegRewriter.Plo@am__quote@
1935
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-AsmWriter.Plo@am__quote@
1936
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Attributes.Plo@am__quote@
1937
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-AutoUpgrade.Plo@am__quote@
1938
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-BasicBlock.Plo@am__quote@
1939
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-ConstantFold.Plo@am__quote@
1940
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Constants.Plo@am__quote@
1941
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Core.Plo@am__quote@
1942
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Dominators.Plo@am__quote@
1943
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Function.Plo@am__quote@
1944
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Globals.Plo@am__quote@
1945
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-InlineAsm.Plo@am__quote@
1946
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Instruction.Plo@am__quote@
1947
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Instructions.Plo@am__quote@
1948
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-IntrinsicInst.Plo@am__quote@
1949
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-LLVMContext.Plo@am__quote@
1950
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-LeakDetector.Plo@am__quote@
1951
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Mangler.Plo@am__quote@
1952
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Metadata.Plo@am__quote@
1953
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Module.Plo@am__quote@
1954
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-ModuleProvider.Plo@am__quote@
1955
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Pass.Plo@am__quote@
1956
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-PassManager.Plo@am__quote@
1957
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-PrintModulePass.Plo@am__quote@
1958
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Type.Plo@am__quote@
1959
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-TypeSymbolTable.Plo@am__quote@
1960
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Use.Plo@am__quote@
1961
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Value.Plo@am__quote@
1962
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-ValueSymbolTable.Plo@am__quote@
1963
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-ValueTypes.Plo@am__quote@
1964
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmcore_la-Verifier.Plo@am__quote@
1965
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmexecutionengine_la-ExecutionEngine.Plo@am__quote@
1966
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmexecutionengine_la-Intercept.Plo@am__quote@
1967
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmexecutionengine_la-JIT.Plo@am__quote@
1968
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmexecutionengine_la-JITDebugRegisterer.Plo@am__quote@
1969
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmexecutionengine_la-JITDwarfEmitter.Plo@am__quote@
1970
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmexecutionengine_la-JITEmitter.Plo@am__quote@
1971
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmexecutionengine_la-JITMemoryManager.Plo@am__quote@
1972
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmexecutionengine_la-TargetSelect.Plo@am__quote@
1973
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvminterpreter_la-Execution.Plo@am__quote@
1974
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvminterpreter_la-ExternalFunctions.Plo@am__quote@
1975
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvminterpreter_la-Interpreter.Plo@am__quote@
1976
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-AliasAnalysis.Plo@am__quote@
1977
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-AliasSetTracker.Plo@am__quote@
1978
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-BasicAliasAnalysis.Plo@am__quote@
1979
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-CallGraph.Plo@am__quote@
1980
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-CaptureTracking.Plo@am__quote@
1981
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-ConstantFolding.Plo@am__quote@
1982
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-DebugInfo.Plo@am__quote@
1983
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-IVUsers.Plo@am__quote@
1984
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-InstructionSimplify.Plo@am__quote@
1985
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-LiveValues.Plo@am__quote@
1986
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-LoopDependenceAnalysis.Plo@am__quote@
1987
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-LoopInfo.Plo@am__quote@
1988
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-LoopPass.Plo@am__quote@
1989
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-MemoryBuiltins.Plo@am__quote@
1990
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-MemoryDependenceAnalysis.Plo@am__quote@
1991
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-PHITransAddr.Plo@am__quote@
1992
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-ProfileInfo.Plo@am__quote@
1993
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-ScalarEvolution.Plo@am__quote@
1994
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-ScalarEvolutionExpander.Plo@am__quote@
1995
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmipa_la-ValueTracking.Plo@am__quote@
1996
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCAsmInfo.Plo@am__quote@
1997
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCAsmInfoCOFF.Plo@am__quote@
1998
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCAsmInfoDarwin.Plo@am__quote@
1999
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCAsmLexer.Plo@am__quote@
2000
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCAsmParser.Plo@am__quote@
2001
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCAsmStreamer.Plo@am__quote@
2002
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCAssembler.Plo@am__quote@
2003
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCCodeEmitter.Plo@am__quote@
2004
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCContext.Plo@am__quote@
2005
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCExpr.Plo@am__quote@
2006
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCInst.Plo@am__quote@
2007
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCMachOStreamer.Plo@am__quote@
2008
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCNullStreamer.Plo@am__quote@
2009
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCSection.Plo@am__quote@
2010
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCSectionELF.Plo@am__quote@
2011
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCSectionMachO.Plo@am__quote@
2012
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCStreamer.Plo@am__quote@
2013
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCSymbol.Plo@am__quote@
2014
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-MCValue.Plo@am__quote@
2015
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmmc_la-TargetAsmParser.Plo@am__quote@
2016
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmscalar_la-CodeGenPrepare.Plo@am__quote@
2017
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmscalar_la-ConstantProp.Plo@am__quote@
2018
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmscalar_la-DCE.Plo@am__quote@
2019
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmscalar_la-GEPSplitter.Plo@am__quote@
2020
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmscalar_la-GVN.Plo@am__quote@
2021
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmscalar_la-LoopStrengthReduce.Plo@am__quote@
2022
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmscalar_la-SimplifyCFGPass.Plo@am__quote@
2023
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-AsmPrinter.Plo@am__quote@
2024
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-CallingConvLower.Plo@am__quote@
2025
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-DAGCombiner.Plo@am__quote@
2026
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-DIE.Plo@am__quote@
2027
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-DwarfDebug.Plo@am__quote@
2028
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-DwarfException.Plo@am__quote@
2029
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-DwarfLabel.Plo@am__quote@
2030
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-DwarfPrinter.Plo@am__quote@
2031
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-DwarfWriter.Plo@am__quote@
2032
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-FastISel.Plo@am__quote@
2033
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-FunctionLoweringInfo.Plo@am__quote@
2034
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-InstrEmitter.Plo@am__quote@
2035
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-LegalizeDAG.Plo@am__quote@
2036
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-LegalizeFloatTypes.Plo@am__quote@
2037
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-LegalizeIntegerTypes.Plo@am__quote@
2038
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-LegalizeTypes.Plo@am__quote@
2039
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-LegalizeTypesGeneric.Plo@am__quote@
2040
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-LegalizeVectorOps.Plo@am__quote@
2041
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-LegalizeVectorTypes.Plo@am__quote@
2042
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-ScheduleDAGFast.Plo@am__quote@
2043
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-ScheduleDAGList.Plo@am__quote@
2044
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-ScheduleDAGRRList.Plo@am__quote@
2045
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-ScheduleDAGSDNodes.Plo@am__quote@
2046
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-SelectionDAG.Plo@am__quote@
2047
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-SelectionDAGBuilder.Plo@am__quote@
2048
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-SelectionDAGISel.Plo@am__quote@
2049
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-SelectionDAGPrinter.Plo@am__quote@
2050
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsdag_la-TargetLowering.Plo@am__quote@
2051
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-APFloat.Plo@am__quote@
2052
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-APInt.Plo@am__quote@
2053
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-APSInt.Plo@am__quote@
2054
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-Allocator.Plo@am__quote@
2055
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-CommandLine.Plo@am__quote@
2056
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-ConstantRange.Plo@am__quote@
2057
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-Debug.Plo@am__quote@
2058
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-Dwarf.Plo@am__quote@
2059
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-ErrorHandling.Plo@am__quote@
2060
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-FileUtilities.Plo@am__quote@
2061
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-FoldingSet.Plo@am__quote@
2062
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-FormattedStream.Plo@am__quote@
2063
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-GraphWriter.Plo@am__quote@
2064
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-IsInf.Plo@am__quote@
2065
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-IsNAN.Plo@am__quote@
2066
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-ManagedStatic.Plo@am__quote@
2067
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-MemoryBuffer.Plo@am__quote@
2068
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-PluginLoader.Plo@am__quote@
2069
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-PrettyStackTrace.Plo@am__quote@
2070
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-Regex.Plo@am__quote@
2071
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-SlowOperationInformer.Plo@am__quote@
2072
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-SmallPtrSet.Plo@am__quote@
2073
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-SourceMgr.Plo@am__quote@
2074
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-Statistic.Plo@am__quote@
2075
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-StringExtras.Plo@am__quote@
2076
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-StringMap.Plo@am__quote@
2077
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-StringPool.Plo@am__quote@
2078
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-StringRef.Plo@am__quote@
2079
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-SystemUtils.Plo@am__quote@
2080
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-TargetRegistry.Plo@am__quote@
2081
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-Timer.Plo@am__quote@
2082
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-Triple.Plo@am__quote@
2083
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-Twine.Plo@am__quote@
2084
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-raw_os_ostream.Plo@am__quote@
2085
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-raw_ostream.Plo@am__quote@
2086
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-regcomp.Plo@am__quote@
2087
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-regerror.Plo@am__quote@
2088
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-regexec.Plo@am__quote@
2089
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-regfree.Plo@am__quote@
2090
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsupport_la-regstrlcpy.Plo@am__quote@
2091
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Alarm.Plo@am__quote@
2092
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Atomic.Plo@am__quote@
2093
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Disassembler.Plo@am__quote@
2094
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-DynamicLibrary.Plo@am__quote@
2095
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Errno.Plo@am__quote@
2096
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Host.Plo@am__quote@
2097
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-IncludeFile.Plo@am__quote@
2098
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Memory.Plo@am__quote@
2099
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Mutex.Plo@am__quote@
2100
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Path.Plo@am__quote@
2101
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Process.Plo@am__quote@
2102
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Program.Plo@am__quote@
2103
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-RWMutex.Plo@am__quote@
2104
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Signals.Plo@am__quote@
2105
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-ThreadLocal.Plo@am__quote@
2106
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-Threading.Plo@am__quote@
2107
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmsystem_la-TimeValue.Plo@am__quote@
2108
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-SubtargetFeature.Plo@am__quote@
2109
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-Target.Plo@am__quote@
2110
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetData.Plo@am__quote@
2111
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetELFWriterInfo.Plo@am__quote@
2112
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetFrameInfo.Plo@am__quote@
2113
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetInstrInfo.Plo@am__quote@
2114
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetIntrinsicInfo.Plo@am__quote@
2115
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetLoweringObjectFile.Plo@am__quote@
2116
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetMachOWriterInfo.Plo@am__quote@
2117
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetMachine.Plo@am__quote@
2118
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetRegisterInfo.Plo@am__quote@
2119
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtarget_la-TargetSubtarget.Plo@am__quote@
2120
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMBaseInstrInfo.Plo@am__quote@
2121
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMBaseRegisterInfo.Plo@am__quote@
2122
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMCodeEmitter.Plo@am__quote@
2123
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMConstantIslandPass.Plo@am__quote@
2124
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMConstantPoolValue.Plo@am__quote@
2125
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMExpandPseudoInsts.Plo@am__quote@
2126
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMISelDAGToDAG.Plo@am__quote@
2127
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMISelLowering.Plo@am__quote@
2128
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMInstrInfo.Plo@am__quote@
2129
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMJITInfo.Plo@am__quote@
2130
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMLoadStoreOptimizer.Plo@am__quote@
2131
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMMCAsmInfo.Plo@am__quote@
2132
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMRegisterInfo.Plo@am__quote@
2133
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMSubtarget.Plo@am__quote@
2134
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMTargetInfo.Plo@am__quote@
2135
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-ARMTargetMachine.Plo@am__quote@
2136
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-NEONMoveFix.Plo@am__quote@
2137
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-NEONPreAllocPass.Plo@am__quote@
2138
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-Thumb1InstrInfo.Plo@am__quote@
2139
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-Thumb1RegisterInfo.Plo@am__quote@
2140
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-Thumb2ITBlockPass.Plo@am__quote@
2141
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-Thumb2InstrInfo.Plo@am__quote@
2142
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-Thumb2RegisterInfo.Plo@am__quote@
2143
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetarm_la-Thumb2SizeReduction.Plo@am__quote@
2144
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCBranchSelector.Plo@am__quote@
2145
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCCodeEmitter.Plo@am__quote@
2146
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCHazardRecognizers.Plo@am__quote@
2147
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCISelDAGToDAG.Plo@am__quote@
2148
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCISelLowering.Plo@am__quote@
2149
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCInstrInfo.Plo@am__quote@
2150
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCJITInfo.Plo@am__quote@
2151
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCMCAsmInfo.Plo@am__quote@
2152
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCMachOWriterInfo.Plo@am__quote@
2153
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCPredicates.Plo@am__quote@
2154
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCRegisterInfo.Plo@am__quote@
2155
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCSubtarget.Plo@am__quote@
2156
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PPCTargetMachine.Plo@am__quote@
2157
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetppc_la-PowerPCTargetInfo.Plo@am__quote@
2158
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86CodeEmitter.Plo@am__quote@
2159
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86ELFWriterInfo.Plo@am__quote@
2160
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86FastISel.Plo@am__quote@
2161
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86FloatingPoint.Plo@am__quote@
2162
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86FloatingPointRegKill.Plo@am__quote@
2163
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86ISelDAGToDAG.Plo@am__quote@
2164
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86ISelLowering.Plo@am__quote@
2165
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86InstrInfo.Plo@am__quote@
2166
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86JITInfo.Plo@am__quote@
2167
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86MCAsmInfo.Plo@am__quote@
2168
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86RegisterInfo.Plo@am__quote@
2169
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86Subtarget.Plo@am__quote@
2170
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86TargetInfo.Plo@am__quote@
2171
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86TargetMachine.Plo@am__quote@
2172
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtargetx86_la-X86TargetObjectFile.Plo@am__quote@
2173
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-AddrModeMatcher.Plo@am__quote@
2174
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-BasicBlockUtils.Plo@am__quote@
2175
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-BreakCriticalEdges.Plo@am__quote@
2176
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-DemoteRegToStack.Plo@am__quote@
2177
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-LCSSA.Plo@am__quote@
2178
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-Local.Plo@am__quote@
2179
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-LoopSimplify.Plo@am__quote@
2180
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-LowerInvoke.Plo@am__quote@
2181
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-LowerSwitch.Plo@am__quote@
2182
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-Mem2Reg.Plo@am__quote@
2183
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-PromoteMemoryToRegister.Plo@am__quote@
2184
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-SSAUpdater.Plo@am__quote@
2185
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-SimplifyCFG.Plo@am__quote@
2186
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmtransformutils_la-UnifyFunctionExitNodes.Plo@am__quote@
1853
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCBranchSelector.Plo@am__quote@
1854
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCCodeEmitter.Plo@am__quote@
1855
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCHazardRecognizers.Plo@am__quote@
1856
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCISelDAGToDAG.Plo@am__quote@
1857
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCISelLowering.Plo@am__quote@
1858
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCInstrInfo.Plo@am__quote@
1859
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCJITInfo.Plo@am__quote@
1860
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCMCAsmInfo.Plo@am__quote@
1861
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCMachOWriterInfo.Plo@am__quote@
1862
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCPredicates.Plo@am__quote@
1863
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCRegisterInfo.Plo@am__quote@
1864
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCSubtarget.Plo@am__quote@
1865
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PPCTargetMachine.Plo@am__quote@
1866
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-PowerPCTargetInfo.Plo@am__quote@
1867
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-ScheduleDAG.Plo@am__quote@
1868
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmpowerpccodegen_la-TargetMachOWriterInfo.Plo@am__quote@
1869
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-DeadMachineInstructionElim.Plo@am__quote@
1870
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-FastISel.Plo@am__quote@
1871
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-MCAsmInfoCOFF.Plo@am__quote@
1872
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-MCCodeEmitter.Plo@am__quote@
1873
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-MCContext.Plo@am__quote@
1874
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-MCExpr.Plo@am__quote@
1875
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-MCInst.Plo@am__quote@
1876
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-MachineDominators.Plo@am__quote@
1877
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-MachineLoopInfo.Plo@am__quote@
1878
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-MachineModuleInfoImpls.Plo@am__quote@
1879
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-TargetELFWriterInfo.Plo@am__quote@
1880
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86COFFMachineModuleInfo.Plo@am__quote@
1881
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86CodeEmitter.Plo@am__quote@
1882
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86ELFWriterInfo.Plo@am__quote@
1883
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86FastISel.Plo@am__quote@
1884
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86FloatingPoint.Plo@am__quote@
1885
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86FloatingPointRegKill.Plo@am__quote@
1886
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86ISelDAGToDAG.Plo@am__quote@
1887
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86ISelLowering.Plo@am__quote@
1888
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86InstrInfo.Plo@am__quote@
1889
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86JITInfo.Plo@am__quote@
1890
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86MCAsmInfo.Plo@am__quote@
1891
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86RegisterInfo.Plo@am__quote@
1892
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86Subtarget.Plo@am__quote@
1893
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86TargetInfo.Plo@am__quote@
1894
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86TargetMachine.Plo@am__quote@
1895
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libllvmx86codegen_la-X86TargetObjectFile.Plo@am__quote@
2187 1896
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llc-MCInstPrinter.Po@am__quote@
2188 1897
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llc-llc.Po@am__quote@
2189 1898
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lli-OProfileJITEventListener.Po@am__quote@
2190 1899
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lli-lli.Po@am__quote@
2191 1900
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvm_as-llvm-as.Po@am__quote@
2192 1901
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvm_dis-llvm-dis.Po@am__quote@
2193
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-APFloatTest.Po@am__quote@
2194
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-APIntTest.Po@am__quote@
2195
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-DenseMapTest.Po@am__quote@
2196
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-DenseSetTest.Po@am__quote@
2197
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-ImmutableSetTest.Po@am__quote@
2198
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-SmallStringTest.Po@am__quote@
2199
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-SmallVectorTest.Po@am__quote@
2200
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-SparseBitVectorTest.Po@am__quote@
2201
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-StringMapTest.Po@am__quote@
2202
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-StringRefTest.Po@am__quote@
2203
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-TripleTest.Po@am__quote@
2204
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ADT-TwineTest.Po@am__quote@
2205 1902
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Po@am__quote@
2206 1903
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Po@am__quote@
2207 1904
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Po@am__quote@
... ...
@@ -2218,6 +1619,13 @@ distclean-compile:
2218 2218
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_VMCore-MetadataTest.Po@am__quote@
2219 2219
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Po@am__quote@
2220 2220
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/not-not.Po@am__quote@
2221
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raw_os_ostream.Plo@am__quote@
2222
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raw_ostream.Plo@am__quote@
2223
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/regcomp.Plo@am__quote@
2224
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/regerror.Plo@am__quote@
2225
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/regexec.Plo@am__quote@
2226
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/regfree.Plo@am__quote@
2227
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/regstrlcpy.Plo@am__quote@
2221 2228
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tblgen-AsmMatcherEmitter.Po@am__quote@
2222 2229
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tblgen-AsmWriterEmitter.Po@am__quote@
2223 2230
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tblgen-CallingConvEmitter.Po@am__quote@
... ...
@@ -2267,45 +1675,45 @@ distclean-compile:
2267 2267
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2268 2268
 @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
2269 2269
 
2270
-libllvmsupport_la-regcomp.lo: llvm/lib/Support/regcomp.c
2271
-@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libllvmsupport_la-regcomp.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-regcomp.Tpo -c -o libllvmsupport_la-regcomp.lo `test -f 'llvm/lib/Support/regcomp.c' || echo '$(srcdir)/'`llvm/lib/Support/regcomp.c
2272
-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-regcomp.Tpo $(DEPDIR)/libllvmsupport_la-regcomp.Plo
2270
+regcomp.lo: llvm/lib/Support/regcomp.c
2271
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regcomp.lo -MD -MP -MF $(DEPDIR)/regcomp.Tpo -c -o regcomp.lo `test -f 'llvm/lib/Support/regcomp.c' || echo '$(srcdir)/'`llvm/lib/Support/regcomp.c
2272
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/regcomp.Tpo $(DEPDIR)/regcomp.Plo
2273 2273
 @am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
2274
-@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regcomp.c' object='libllvmsupport_la-regcomp.lo' libtool=yes @AMDEPBACKSLASH@
2274
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regcomp.c' object='regcomp.lo' libtool=yes @AMDEPBACKSLASH@
2275 2275
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2276
-@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libllvmsupport_la-regcomp.lo `test -f 'llvm/lib/Support/regcomp.c' || echo '$(srcdir)/'`llvm/lib/Support/regcomp.c
2276
+@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regcomp.lo `test -f 'llvm/lib/Support/regcomp.c' || echo '$(srcdir)/'`llvm/lib/Support/regcomp.c
2277 2277
 
2278
-libllvmsupport_la-regerror.lo: llvm/lib/Support/regerror.c
2279
-@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libllvmsupport_la-regerror.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-regerror.Tpo -c -o libllvmsupport_la-regerror.lo `test -f 'llvm/lib/Support/regerror.c' || echo '$(srcdir)/'`llvm/lib/Support/regerror.c
2280
-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-regerror.Tpo $(DEPDIR)/libllvmsupport_la-regerror.Plo
2278
+regerror.lo: llvm/lib/Support/regerror.c
2279
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regerror.lo -MD -MP -MF $(DEPDIR)/regerror.Tpo -c -o regerror.lo `test -f 'llvm/lib/Support/regerror.c' || echo '$(srcdir)/'`llvm/lib/Support/regerror.c
2280
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/regerror.Tpo $(DEPDIR)/regerror.Plo
2281 2281
 @am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
2282
-@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regerror.c' object='libllvmsupport_la-regerror.lo' libtool=yes @AMDEPBACKSLASH@
2282
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regerror.c' object='regerror.lo' libtool=yes @AMDEPBACKSLASH@
2283 2283
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2284
-@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libllvmsupport_la-regerror.lo `test -f 'llvm/lib/Support/regerror.c' || echo '$(srcdir)/'`llvm/lib/Support/regerror.c
2284
+@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regerror.lo `test -f 'llvm/lib/Support/regerror.c' || echo '$(srcdir)/'`llvm/lib/Support/regerror.c
2285 2285
 
2286
-libllvmsupport_la-regexec.lo: llvm/lib/Support/regexec.c
2287
-@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libllvmsupport_la-regexec.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-regexec.Tpo -c -o libllvmsupport_la-regexec.lo `test -f 'llvm/lib/Support/regexec.c' || echo '$(srcdir)/'`llvm/lib/Support/regexec.c
2288
-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-regexec.Tpo $(DEPDIR)/libllvmsupport_la-regexec.Plo
2286
+regexec.lo: llvm/lib/Support/regexec.c
2287
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regexec.lo -MD -MP -MF $(DEPDIR)/regexec.Tpo -c -o regexec.lo `test -f 'llvm/lib/Support/regexec.c' || echo '$(srcdir)/'`llvm/lib/Support/regexec.c
2288
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/regexec.Tpo $(DEPDIR)/regexec.Plo
2289 2289
 @am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
2290
-@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regexec.c' object='libllvmsupport_la-regexec.lo' libtool=yes @AMDEPBACKSLASH@
2290
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regexec.c' object='regexec.lo' libtool=yes @AMDEPBACKSLASH@
2291 2291
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2292
-@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libllvmsupport_la-regexec.lo `test -f 'llvm/lib/Support/regexec.c' || echo '$(srcdir)/'`llvm/lib/Support/regexec.c
2292
+@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regexec.lo `test -f 'llvm/lib/Support/regexec.c' || echo '$(srcdir)/'`llvm/lib/Support/regexec.c
2293 2293
 
2294
-libllvmsupport_la-regfree.lo: llvm/lib/Support/regfree.c
2295
-@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libllvmsupport_la-regfree.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-regfree.Tpo -c -o libllvmsupport_la-regfree.lo `test -f 'llvm/lib/Support/regfree.c' || echo '$(srcdir)/'`llvm/lib/Support/regfree.c
2296
-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-regfree.Tpo $(DEPDIR)/libllvmsupport_la-regfree.Plo
2294
+regfree.lo: llvm/lib/Support/regfree.c
2295
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regfree.lo -MD -MP -MF $(DEPDIR)/regfree.Tpo -c -o regfree.lo `test -f 'llvm/lib/Support/regfree.c' || echo '$(srcdir)/'`llvm/lib/Support/regfree.c
2296
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/regfree.Tpo $(DEPDIR)/regfree.Plo
2297 2297
 @am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
2298
-@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regfree.c' object='libllvmsupport_la-regfree.lo' libtool=yes @AMDEPBACKSLASH@
2298
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regfree.c' object='regfree.lo' libtool=yes @AMDEPBACKSLASH@
2299 2299
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2300
-@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libllvmsupport_la-regfree.lo `test -f 'llvm/lib/Support/regfree.c' || echo '$(srcdir)/'`llvm/lib/Support/regfree.c
2300
+@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regfree.lo `test -f 'llvm/lib/Support/regfree.c' || echo '$(srcdir)/'`llvm/lib/Support/regfree.c
2301 2301
 
2302
-libllvmsupport_la-regstrlcpy.lo: llvm/lib/Support/regstrlcpy.c
2303
-@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libllvmsupport_la-regstrlcpy.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-regstrlcpy.Tpo -c -o libllvmsupport_la-regstrlcpy.lo `test -f 'llvm/lib/Support/regstrlcpy.c' || echo '$(srcdir)/'`llvm/lib/Support/regstrlcpy.c
2304
-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-regstrlcpy.Tpo $(DEPDIR)/libllvmsupport_la-regstrlcpy.Plo
2302
+regstrlcpy.lo: llvm/lib/Support/regstrlcpy.c
2303
+@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT regstrlcpy.lo -MD -MP -MF $(DEPDIR)/regstrlcpy.Tpo -c -o regstrlcpy.lo `test -f 'llvm/lib/Support/regstrlcpy.c' || echo '$(srcdir)/'`llvm/lib/Support/regstrlcpy.c
2304
+@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/regstrlcpy.Tpo $(DEPDIR)/regstrlcpy.Plo
2305 2305
 @am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
2306
-@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regstrlcpy.c' object='libllvmsupport_la-regstrlcpy.lo' libtool=yes @AMDEPBACKSLASH@
2306
+@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llvm/lib/Support/regstrlcpy.c' object='regstrlcpy.lo' libtool=yes @AMDEPBACKSLASH@
2307 2307
 @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2308
-@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libllvmsupport_la-regstrlcpy.lo `test -f 'llvm/lib/Support/regstrlcpy.c' || echo '$(srcdir)/'`llvm/lib/Support/regstrlcpy.c
2308
+@am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o regstrlcpy.lo `test -f 'llvm/lib/Support/regstrlcpy.c' || echo '$(srcdir)/'`llvm/lib/Support/regstrlcpy.c
2309 2309
 
2310 2310
 count-count.o: llvm/utils/count/count.c
2311 2311
 @am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(count_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT count-count.o -MD -MP -MF $(DEPDIR)/count-count.Tpo -c -o count-count.o `test -f 'llvm/utils/count/count.c' || echo '$(srcdir)/'`llvm/utils/count/count.c
... ...
@@ -2348,2836 +1756,1852 @@ count-count.obj: llvm/utils/count/count.c
2348 2348
 @am__fastdepCXX_FALSE@	$(LTCXXCOMPILE) -c -o $@ $<
2349 2349
 
2350 2350
 libclamavcxx_la-bytecode2llvm.lo: bytecode2llvm.cpp
2351
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclamavcxx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libclamavcxx_la-bytecode2llvm.lo -MD -MP -MF $(DEPDIR)/libclamavcxx_la-bytecode2llvm.Tpo -c -o libclamavcxx_la-bytecode2llvm.lo `test -f 'bytecode2llvm.cpp' || echo '$(srcdir)/'`bytecode2llvm.cpp
2351
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclamavcxx_la_CXXFLAGS) $(CXXFLAGS) -MT libclamavcxx_la-bytecode2llvm.lo -MD -MP -MF $(DEPDIR)/libclamavcxx_la-bytecode2llvm.Tpo -c -o libclamavcxx_la-bytecode2llvm.lo `test -f 'bytecode2llvm.cpp' || echo '$(srcdir)/'`bytecode2llvm.cpp
2352 2352
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libclamavcxx_la-bytecode2llvm.Tpo $(DEPDIR)/libclamavcxx_la-bytecode2llvm.Plo
2353 2353
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2354 2354
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bytecode2llvm.cpp' object='libclamavcxx_la-bytecode2llvm.lo' libtool=yes @AMDEPBACKSLASH@
2355 2355
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2356
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libclamavcxx_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libclamavcxx_la-bytecode2llvm.lo `test -f 'bytecode2llvm.cpp' || echo '$(srcdir)/'`bytecode2llvm.cpp
2357
-
2358
-libgoogletest_la-gtest-death-test.lo: llvm/utils/unittest/googletest/gtest-death-test.cc
2359
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -MT libgoogletest_la-gtest-death-test.lo -MD -MP -MF $(DEPDIR)/libgoogletest_la-gtest-death-test.Tpo -c -o libgoogletest_la-gtest-death-test.lo `test -f 'llvm/utils/unittest/googletest/gtest-death-test.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-death-test.cc
2360
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgoogletest_la-gtest-death-test.Tpo $(DEPDIR)/libgoogletest_la-gtest-death-test.Plo
2361
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2362
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-death-test.cc' object='libgoogletest_la-gtest-death-test.lo' libtool=yes @AMDEPBACKSLASH@
2363
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2364
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgoogletest_la-gtest-death-test.lo `test -f 'llvm/utils/unittest/googletest/gtest-death-test.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-death-test.cc
2365
-
2366
-libgoogletest_la-gtest-filepath.lo: llvm/utils/unittest/googletest/gtest-filepath.cc
2367
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -MT libgoogletest_la-gtest-filepath.lo -MD -MP -MF $(DEPDIR)/libgoogletest_la-gtest-filepath.Tpo -c -o libgoogletest_la-gtest-filepath.lo `test -f 'llvm/utils/unittest/googletest/gtest-filepath.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-filepath.cc
2368
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgoogletest_la-gtest-filepath.Tpo $(DEPDIR)/libgoogletest_la-gtest-filepath.Plo
2369
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2370
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-filepath.cc' object='libgoogletest_la-gtest-filepath.lo' libtool=yes @AMDEPBACKSLASH@
2371
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2372
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgoogletest_la-gtest-filepath.lo `test -f 'llvm/utils/unittest/googletest/gtest-filepath.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-filepath.cc
2373
-
2374
-libgoogletest_la-gtest-port.lo: llvm/utils/unittest/googletest/gtest-port.cc
2375
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -MT libgoogletest_la-gtest-port.lo -MD -MP -MF $(DEPDIR)/libgoogletest_la-gtest-port.Tpo -c -o libgoogletest_la-gtest-port.lo `test -f 'llvm/utils/unittest/googletest/gtest-port.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-port.cc
2376
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgoogletest_la-gtest-port.Tpo $(DEPDIR)/libgoogletest_la-gtest-port.Plo
2377
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2378
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-port.cc' object='libgoogletest_la-gtest-port.lo' libtool=yes @AMDEPBACKSLASH@
2379
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2380
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgoogletest_la-gtest-port.lo `test -f 'llvm/utils/unittest/googletest/gtest-port.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-port.cc
2381
-
2382
-libgoogletest_la-gtest-test-part.lo: llvm/utils/unittest/googletest/gtest-test-part.cc
2383
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -MT libgoogletest_la-gtest-test-part.lo -MD -MP -MF $(DEPDIR)/libgoogletest_la-gtest-test-part.Tpo -c -o libgoogletest_la-gtest-test-part.lo `test -f 'llvm/utils/unittest/googletest/gtest-test-part.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-test-part.cc
2384
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgoogletest_la-gtest-test-part.Tpo $(DEPDIR)/libgoogletest_la-gtest-test-part.Plo
2385
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2386
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-test-part.cc' object='libgoogletest_la-gtest-test-part.lo' libtool=yes @AMDEPBACKSLASH@
2387
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2388
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgoogletest_la-gtest-test-part.lo `test -f 'llvm/utils/unittest/googletest/gtest-test-part.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-test-part.cc
2389
-
2390
-libgoogletest_la-gtest-typed-test.lo: llvm/utils/unittest/googletest/gtest-typed-test.cc
2391
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -MT libgoogletest_la-gtest-typed-test.lo -MD -MP -MF $(DEPDIR)/libgoogletest_la-gtest-typed-test.Tpo -c -o libgoogletest_la-gtest-typed-test.lo `test -f 'llvm/utils/unittest/googletest/gtest-typed-test.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-typed-test.cc
2392
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgoogletest_la-gtest-typed-test.Tpo $(DEPDIR)/libgoogletest_la-gtest-typed-test.Plo
2393
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2394
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-typed-test.cc' object='libgoogletest_la-gtest-typed-test.lo' libtool=yes @AMDEPBACKSLASH@
2395
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2396
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgoogletest_la-gtest-typed-test.lo `test -f 'llvm/utils/unittest/googletest/gtest-typed-test.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-typed-test.cc
2397
-
2398
-libgoogletest_la-gtest.lo: llvm/utils/unittest/googletest/gtest.cc
2399
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -MT libgoogletest_la-gtest.lo -MD -MP -MF $(DEPDIR)/libgoogletest_la-gtest.Tpo -c -o libgoogletest_la-gtest.lo `test -f 'llvm/utils/unittest/googletest/gtest.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest.cc
2400
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgoogletest_la-gtest.Tpo $(DEPDIR)/libgoogletest_la-gtest.Plo
2401
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2402
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest.cc' object='libgoogletest_la-gtest.lo' libtool=yes @AMDEPBACKSLASH@
2403
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2404
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgoogletest_la-gtest.lo `test -f 'llvm/utils/unittest/googletest/gtest.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest.cc
2405
-
2406
-libgoogletest_la-TestMain.lo: llvm/utils/unittest/UnitTestMain/TestMain.cpp
2407
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -MT libgoogletest_la-TestMain.lo -MD -MP -MF $(DEPDIR)/libgoogletest_la-TestMain.Tpo -c -o libgoogletest_la-TestMain.lo `test -f 'llvm/utils/unittest/UnitTestMain/TestMain.cpp' || echo '$(srcdir)/'`llvm/utils/unittest/UnitTestMain/TestMain.cpp
2408
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgoogletest_la-TestMain.Tpo $(DEPDIR)/libgoogletest_la-TestMain.Plo
2409
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2410
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/UnitTestMain/TestMain.cpp' object='libgoogletest_la-TestMain.lo' libtool=yes @AMDEPBACKSLASH@
2411
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2412
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgoogletest_la_CPPFLAGS) $(CPPFLAGS) $(libgoogletest_la_CXXFLAGS) $(CXXFLAGS) -c -o libgoogletest_la-TestMain.lo `test -f 'llvm/utils/unittest/UnitTestMain/TestMain.cpp' || echo '$(srcdir)/'`llvm/utils/unittest/UnitTestMain/TestMain.cpp
2413
-
2414
-libllvmasmparser_la-LLLexer.lo: llvm/lib/AsmParser/LLLexer.cpp
2415
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmparser_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmparser_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmparser_la-LLLexer.lo -MD -MP -MF $(DEPDIR)/libllvmasmparser_la-LLLexer.Tpo -c -o libllvmasmparser_la-LLLexer.lo `test -f 'llvm/lib/AsmParser/LLLexer.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/LLLexer.cpp
2416
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmparser_la-LLLexer.Tpo $(DEPDIR)/libllvmasmparser_la-LLLexer.Plo
2417
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2418
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/AsmParser/LLLexer.cpp' object='libllvmasmparser_la-LLLexer.lo' libtool=yes @AMDEPBACKSLASH@
2419
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2420
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmparser_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmparser_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmparser_la-LLLexer.lo `test -f 'llvm/lib/AsmParser/LLLexer.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/LLLexer.cpp
2421
-
2422
-libllvmasmparser_la-LLParser.lo: llvm/lib/AsmParser/LLParser.cpp
2423
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmparser_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmparser_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmparser_la-LLParser.lo -MD -MP -MF $(DEPDIR)/libllvmasmparser_la-LLParser.Tpo -c -o libllvmasmparser_la-LLParser.lo `test -f 'llvm/lib/AsmParser/LLParser.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/LLParser.cpp
2424
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmparser_la-LLParser.Tpo $(DEPDIR)/libllvmasmparser_la-LLParser.Plo
2425
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2426
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/AsmParser/LLParser.cpp' object='libllvmasmparser_la-LLParser.lo' libtool=yes @AMDEPBACKSLASH@
2427
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2428
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmparser_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmparser_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmparser_la-LLParser.lo `test -f 'llvm/lib/AsmParser/LLParser.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/LLParser.cpp
2429
-
2430
-libllvmasmparser_la-Parser.lo: llvm/lib/AsmParser/Parser.cpp
2431
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmparser_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmparser_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmparser_la-Parser.lo -MD -MP -MF $(DEPDIR)/libllvmasmparser_la-Parser.Tpo -c -o libllvmasmparser_la-Parser.lo `test -f 'llvm/lib/AsmParser/Parser.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/Parser.cpp
2432
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmparser_la-Parser.Tpo $(DEPDIR)/libllvmasmparser_la-Parser.Plo
2433
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2434
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/AsmParser/Parser.cpp' object='libllvmasmparser_la-Parser.lo' libtool=yes @AMDEPBACKSLASH@
2435
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2436
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmparser_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmparser_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmparser_la-Parser.lo `test -f 'llvm/lib/AsmParser/Parser.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/Parser.cpp
2437
-
2438
-libllvmasmprinter_la-OcamlGCPrinter.lo: llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
2439
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-OcamlGCPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-OcamlGCPrinter.Tpo -c -o libllvmasmprinter_la-OcamlGCPrinter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
2440
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-OcamlGCPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-OcamlGCPrinter.Plo
2441
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2442
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp' object='libllvmasmprinter_la-OcamlGCPrinter.lo' libtool=yes @AMDEPBACKSLASH@
2443
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2444
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-OcamlGCPrinter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
2445
-
2446
-libllvmasmprinter_la-ELFCodeEmitter.lo: llvm/lib/CodeGen/ELFCodeEmitter.cpp
2447
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ELFCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ELFCodeEmitter.Tpo -c -o libllvmasmprinter_la-ELFCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ELFCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFCodeEmitter.cpp
2448
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ELFCodeEmitter.Tpo $(DEPDIR)/libllvmasmprinter_la-ELFCodeEmitter.Plo
2449
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2450
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ELFCodeEmitter.cpp' object='libllvmasmprinter_la-ELFCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
2451
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2452
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ELFCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ELFCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFCodeEmitter.cpp
2453
-
2454
-libllvmasmprinter_la-ELFWriter.lo: llvm/lib/CodeGen/ELFWriter.cpp
2455
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ELFWriter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ELFWriter.Tpo -c -o libllvmasmprinter_la-ELFWriter.lo `test -f 'llvm/lib/CodeGen/ELFWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFWriter.cpp
2456
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ELFWriter.Tpo $(DEPDIR)/libllvmasmprinter_la-ELFWriter.Plo
2457
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2458
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ELFWriter.cpp' object='libllvmasmprinter_la-ELFWriter.lo' libtool=yes @AMDEPBACKSLASH@
2459
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2460
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ELFWriter.lo `test -f 'llvm/lib/CodeGen/ELFWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFWriter.cpp
2461
-
2462
-libllvmasmprinter_la-MachOCodeEmitter.lo: llvm/lib/CodeGen/MachOCodeEmitter.cpp
2463
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-MachOCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-MachOCodeEmitter.Tpo -c -o libllvmasmprinter_la-MachOCodeEmitter.lo `test -f 'llvm/lib/CodeGen/MachOCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachOCodeEmitter.cpp
2464
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-MachOCodeEmitter.Tpo $(DEPDIR)/libllvmasmprinter_la-MachOCodeEmitter.Plo
2465
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2466
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachOCodeEmitter.cpp' object='libllvmasmprinter_la-MachOCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
2467
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2468
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-MachOCodeEmitter.lo `test -f 'llvm/lib/CodeGen/MachOCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachOCodeEmitter.cpp
2469
-
2470
-libllvmasmprinter_la-MachOWriter.lo: llvm/lib/CodeGen/MachOWriter.cpp
2471
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-MachOWriter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-MachOWriter.Tpo -c -o libllvmasmprinter_la-MachOWriter.lo `test -f 'llvm/lib/CodeGen/MachOWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachOWriter.cpp
2472
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-MachOWriter.Tpo $(DEPDIR)/libllvmasmprinter_la-MachOWriter.Plo
2473
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2474
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachOWriter.cpp' object='libllvmasmprinter_la-MachOWriter.lo' libtool=yes @AMDEPBACKSLASH@
2475
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2476
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-MachOWriter.lo `test -f 'llvm/lib/CodeGen/MachOWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachOWriter.cpp
2477
-
2478
-libllvmasmprinter_la-X86AsmPrinter.lo: llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp
2479
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86AsmPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86AsmPrinter.Tpo -c -o libllvmasmprinter_la-X86AsmPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp
2480
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86AsmPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-X86AsmPrinter.Plo
2481
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2482
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp' object='libllvmasmprinter_la-X86AsmPrinter.lo' libtool=yes @AMDEPBACKSLASH@
2483
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2484
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86AsmPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp
2485
-
2486
-libllvmasmprinter_la-X86ATTInstPrinter.lo: llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
2487
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86ATTInstPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86ATTInstPrinter.Tpo -c -o libllvmasmprinter_la-X86ATTInstPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
2488
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86ATTInstPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-X86ATTInstPrinter.Plo
2489
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2490
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp' object='libllvmasmprinter_la-X86ATTInstPrinter.lo' libtool=yes @AMDEPBACKSLASH@
2491
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2492
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86ATTInstPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
2493
-
2494
-libllvmasmprinter_la-X86IntelInstPrinter.lo: llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp
2495
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86IntelInstPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86IntelInstPrinter.Tpo -c -o libllvmasmprinter_la-X86IntelInstPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp
2496
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86IntelInstPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-X86IntelInstPrinter.Plo
2497
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2498
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp' object='libllvmasmprinter_la-X86IntelInstPrinter.lo' libtool=yes @AMDEPBACKSLASH@
2499
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2500
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86IntelInstPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp
2501
-
2502
-libllvmasmprinter_la-X86MCInstLower.lo: llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
2503
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86MCInstLower.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86MCInstLower.Tpo -c -o libllvmasmprinter_la-X86MCInstLower.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
2504
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86MCInstLower.Tpo $(DEPDIR)/libllvmasmprinter_la-X86MCInstLower.Plo
2505
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2506
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp' object='libllvmasmprinter_la-X86MCInstLower.lo' libtool=yes @AMDEPBACKSLASH@
2507
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2508
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86MCInstLower.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
2509
-
2510
-libllvmasmprinter_la-X86COFFMachineModuleInfo.lo: llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
2511
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86COFFMachineModuleInfo.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86COFFMachineModuleInfo.Tpo -c -o libllvmasmprinter_la-X86COFFMachineModuleInfo.lo `test -f 'llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
2512
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86COFFMachineModuleInfo.Tpo $(DEPDIR)/libllvmasmprinter_la-X86COFFMachineModuleInfo.Plo
2513
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2514
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' object='libllvmasmprinter_la-X86COFFMachineModuleInfo.lo' libtool=yes @AMDEPBACKSLASH@
2515
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2516
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86COFFMachineModuleInfo.lo `test -f 'llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
2517
-
2518
-libllvmasmprinter_la-PPCAsmPrinter.lo: llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
2519
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-PPCAsmPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-PPCAsmPrinter.Tpo -c -o libllvmasmprinter_la-PPCAsmPrinter.lo `test -f 'llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
2520
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-PPCAsmPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-PPCAsmPrinter.Plo
2521
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2522
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp' object='libllvmasmprinter_la-PPCAsmPrinter.lo' libtool=yes @AMDEPBACKSLASH@
2523
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2524
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-PPCAsmPrinter.lo `test -f 'llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
2525
-
2526
-libllvmasmprinter_la-ARMAsmPrinter.lo: llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
2527
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ARMAsmPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ARMAsmPrinter.Tpo -c -o libllvmasmprinter_la-ARMAsmPrinter.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
2528
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ARMAsmPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-ARMAsmPrinter.Plo
2529
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2530
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp' object='libllvmasmprinter_la-ARMAsmPrinter.lo' libtool=yes @AMDEPBACKSLASH@
2531
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2532
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ARMAsmPrinter.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
2533
-
2534
-libllvmasmprinter_la-ARMInstPrinter.lo: llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
2535
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ARMInstPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ARMInstPrinter.Tpo -c -o libllvmasmprinter_la-ARMInstPrinter.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
2536
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ARMInstPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-ARMInstPrinter.Plo
2537
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2538
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp' object='libllvmasmprinter_la-ARMInstPrinter.lo' libtool=yes @AMDEPBACKSLASH@
2539
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2540
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ARMInstPrinter.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
2541
-
2542
-libllvmasmprinter_la-ARMMCInstLower.lo: llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp
2543
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ARMMCInstLower.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ARMMCInstLower.Tpo -c -o libllvmasmprinter_la-ARMMCInstLower.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp
2544
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ARMMCInstLower.Tpo $(DEPDIR)/libllvmasmprinter_la-ARMMCInstLower.Plo
2545
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2546
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp' object='libllvmasmprinter_la-ARMMCInstLower.lo' libtool=yes @AMDEPBACKSLASH@
2547
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2548
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmasmprinter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ARMMCInstLower.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp
2549
-
2550
-libllvmbitreader_la-BitReader.lo: llvm/lib/Bitcode/Reader/BitReader.cpp
2551
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitreader_la-BitReader.lo -MD -MP -MF $(DEPDIR)/libllvmbitreader_la-BitReader.Tpo -c -o libllvmbitreader_la-BitReader.lo `test -f 'llvm/lib/Bitcode/Reader/BitReader.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/BitReader.cpp
2552
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitreader_la-BitReader.Tpo $(DEPDIR)/libllvmbitreader_la-BitReader.Plo
2553
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2554
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/BitReader.cpp' object='libllvmbitreader_la-BitReader.lo' libtool=yes @AMDEPBACKSLASH@
2555
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2556
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitreader_la-BitReader.lo `test -f 'llvm/lib/Bitcode/Reader/BitReader.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/BitReader.cpp
2557
-
2558
-libllvmbitreader_la-BitcodeReader.lo: llvm/lib/Bitcode/Reader/BitcodeReader.cpp
2559
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitreader_la-BitcodeReader.lo -MD -MP -MF $(DEPDIR)/libllvmbitreader_la-BitcodeReader.Tpo -c -o libllvmbitreader_la-BitcodeReader.lo `test -f 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/BitcodeReader.cpp
2560
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitreader_la-BitcodeReader.Tpo $(DEPDIR)/libllvmbitreader_la-BitcodeReader.Plo
2561
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2562
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/BitcodeReader.cpp' object='libllvmbitreader_la-BitcodeReader.lo' libtool=yes @AMDEPBACKSLASH@
2563
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2564
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitreader_la-BitcodeReader.lo `test -f 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/BitcodeReader.cpp
2565
-
2566
-libllvmbitreader_la-Deserialize.lo: llvm/lib/Bitcode/Reader/Deserialize.cpp
2567
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitreader_la-Deserialize.lo -MD -MP -MF $(DEPDIR)/libllvmbitreader_la-Deserialize.Tpo -c -o libllvmbitreader_la-Deserialize.lo `test -f 'llvm/lib/Bitcode/Reader/Deserialize.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/Deserialize.cpp
2568
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitreader_la-Deserialize.Tpo $(DEPDIR)/libllvmbitreader_la-Deserialize.Plo
2569
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2570
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/Deserialize.cpp' object='libllvmbitreader_la-Deserialize.lo' libtool=yes @AMDEPBACKSLASH@
2571
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2572
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitreader_la-Deserialize.lo `test -f 'llvm/lib/Bitcode/Reader/Deserialize.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/Deserialize.cpp
2573
-
2574
-libllvmbitreader_la-DeserializeAPFloat.lo: llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp
2575
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitreader_la-DeserializeAPFloat.lo -MD -MP -MF $(DEPDIR)/libllvmbitreader_la-DeserializeAPFloat.Tpo -c -o libllvmbitreader_la-DeserializeAPFloat.lo `test -f 'llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp
2576
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitreader_la-DeserializeAPFloat.Tpo $(DEPDIR)/libllvmbitreader_la-DeserializeAPFloat.Plo
2577
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2578
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp' object='libllvmbitreader_la-DeserializeAPFloat.lo' libtool=yes @AMDEPBACKSLASH@
2579
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2580
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitreader_la-DeserializeAPFloat.lo `test -f 'llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp
2581
-
2582
-libllvmbitreader_la-DeserializeAPInt.lo: llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp
2583
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitreader_la-DeserializeAPInt.lo -MD -MP -MF $(DEPDIR)/libllvmbitreader_la-DeserializeAPInt.Tpo -c -o libllvmbitreader_la-DeserializeAPInt.lo `test -f 'llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp
2584
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitreader_la-DeserializeAPInt.Tpo $(DEPDIR)/libllvmbitreader_la-DeserializeAPInt.Plo
2585
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2586
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp' object='libllvmbitreader_la-DeserializeAPInt.lo' libtool=yes @AMDEPBACKSLASH@
2587
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2588
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitreader_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitreader_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitreader_la-DeserializeAPInt.lo `test -f 'llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp
2589
-
2590
-libllvmbitwriter_la-BitWriter.lo: llvm/lib/Bitcode/Writer/BitWriter.cpp
2591
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitwriter_la-BitWriter.lo -MD -MP -MF $(DEPDIR)/libllvmbitwriter_la-BitWriter.Tpo -c -o libllvmbitwriter_la-BitWriter.lo `test -f 'llvm/lib/Bitcode/Writer/BitWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitWriter.cpp
2592
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitwriter_la-BitWriter.Tpo $(DEPDIR)/libllvmbitwriter_la-BitWriter.Plo
2593
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2594
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/BitWriter.cpp' object='libllvmbitwriter_la-BitWriter.lo' libtool=yes @AMDEPBACKSLASH@
2595
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2596
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitwriter_la-BitWriter.lo `test -f 'llvm/lib/Bitcode/Writer/BitWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitWriter.cpp
2597
-
2598
-libllvmbitwriter_la-BitcodeWriter.lo: llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
2599
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitwriter_la-BitcodeWriter.lo -MD -MP -MF $(DEPDIR)/libllvmbitwriter_la-BitcodeWriter.Tpo -c -o libllvmbitwriter_la-BitcodeWriter.lo `test -f 'llvm/lib/Bitcode/Writer/BitcodeWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
2600
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitwriter_la-BitcodeWriter.Tpo $(DEPDIR)/libllvmbitwriter_la-BitcodeWriter.Plo
2601
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2602
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/BitcodeWriter.cpp' object='libllvmbitwriter_la-BitcodeWriter.lo' libtool=yes @AMDEPBACKSLASH@
2603
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2604
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitwriter_la-BitcodeWriter.lo `test -f 'llvm/lib/Bitcode/Writer/BitcodeWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
2605
-
2606
-libllvmbitwriter_la-BitcodeWriterPass.lo: llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
2607
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitwriter_la-BitcodeWriterPass.lo -MD -MP -MF $(DEPDIR)/libllvmbitwriter_la-BitcodeWriterPass.Tpo -c -o libllvmbitwriter_la-BitcodeWriterPass.lo `test -f 'llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
2608
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitwriter_la-BitcodeWriterPass.Tpo $(DEPDIR)/libllvmbitwriter_la-BitcodeWriterPass.Plo
2609
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2610
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp' object='libllvmbitwriter_la-BitcodeWriterPass.lo' libtool=yes @AMDEPBACKSLASH@
2611
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2612
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitwriter_la-BitcodeWriterPass.lo `test -f 'llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
2613
-
2614
-libllvmbitwriter_la-Serialize.lo: llvm/lib/Bitcode/Writer/Serialize.cpp
2615
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitwriter_la-Serialize.lo -MD -MP -MF $(DEPDIR)/libllvmbitwriter_la-Serialize.Tpo -c -o libllvmbitwriter_la-Serialize.lo `test -f 'llvm/lib/Bitcode/Writer/Serialize.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/Serialize.cpp
2616
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitwriter_la-Serialize.Tpo $(DEPDIR)/libllvmbitwriter_la-Serialize.Plo
2617
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2618
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/Serialize.cpp' object='libllvmbitwriter_la-Serialize.lo' libtool=yes @AMDEPBACKSLASH@
2619
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2620
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitwriter_la-Serialize.lo `test -f 'llvm/lib/Bitcode/Writer/Serialize.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/Serialize.cpp
2621
-
2622
-libllvmbitwriter_la-SerializeAPFloat.lo: llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp
2623
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitwriter_la-SerializeAPFloat.lo -MD -MP -MF $(DEPDIR)/libllvmbitwriter_la-SerializeAPFloat.Tpo -c -o libllvmbitwriter_la-SerializeAPFloat.lo `test -f 'llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp
2624
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitwriter_la-SerializeAPFloat.Tpo $(DEPDIR)/libllvmbitwriter_la-SerializeAPFloat.Plo
2625
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2626
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp' object='libllvmbitwriter_la-SerializeAPFloat.lo' libtool=yes @AMDEPBACKSLASH@
2627
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2628
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitwriter_la-SerializeAPFloat.lo `test -f 'llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp
2629
-
2630
-libllvmbitwriter_la-SerializeAPInt.lo: llvm/lib/Bitcode/Writer/SerializeAPInt.cpp
2631
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitwriter_la-SerializeAPInt.lo -MD -MP -MF $(DEPDIR)/libllvmbitwriter_la-SerializeAPInt.Tpo -c -o libllvmbitwriter_la-SerializeAPInt.lo `test -f 'llvm/lib/Bitcode/Writer/SerializeAPInt.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/SerializeAPInt.cpp
2632
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitwriter_la-SerializeAPInt.Tpo $(DEPDIR)/libllvmbitwriter_la-SerializeAPInt.Plo
2633
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2634
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/SerializeAPInt.cpp' object='libllvmbitwriter_la-SerializeAPInt.lo' libtool=yes @AMDEPBACKSLASH@
2635
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2636
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitwriter_la-SerializeAPInt.lo `test -f 'llvm/lib/Bitcode/Writer/SerializeAPInt.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/SerializeAPInt.cpp
2637
-
2638
-libllvmbitwriter_la-ValueEnumerator.lo: llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
2639
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmbitwriter_la-ValueEnumerator.lo -MD -MP -MF $(DEPDIR)/libllvmbitwriter_la-ValueEnumerator.Tpo -c -o libllvmbitwriter_la-ValueEnumerator.lo `test -f 'llvm/lib/Bitcode/Writer/ValueEnumerator.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
2640
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmbitwriter_la-ValueEnumerator.Tpo $(DEPDIR)/libllvmbitwriter_la-ValueEnumerator.Plo
2641
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2642
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/ValueEnumerator.cpp' object='libllvmbitwriter_la-ValueEnumerator.lo' libtool=yes @AMDEPBACKSLASH@
2643
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2644
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmbitwriter_la_CPPFLAGS) $(CPPFLAGS) $(libllvmbitwriter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmbitwriter_la-ValueEnumerator.lo `test -f 'llvm/lib/Bitcode/Writer/ValueEnumerator.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
2645
-
2646
-libllvmcodegen_la-AggressiveAntiDepBreaker.lo: llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
2647
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-AggressiveAntiDepBreaker.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-AggressiveAntiDepBreaker.Tpo -c -o libllvmcodegen_la-AggressiveAntiDepBreaker.lo `test -f 'llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
2648
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-AggressiveAntiDepBreaker.Tpo $(DEPDIR)/libllvmcodegen_la-AggressiveAntiDepBreaker.Plo
2649
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2650
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp' object='libllvmcodegen_la-AggressiveAntiDepBreaker.lo' libtool=yes @AMDEPBACKSLASH@
2651
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2652
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-AggressiveAntiDepBreaker.lo `test -f 'llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
2653
-
2654
-libllvmcodegen_la-BranchFolding.lo: llvm/lib/CodeGen/BranchFolding.cpp
2655
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-BranchFolding.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-BranchFolding.Tpo -c -o libllvmcodegen_la-BranchFolding.lo `test -f 'llvm/lib/CodeGen/BranchFolding.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/BranchFolding.cpp
2656
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-BranchFolding.Tpo $(DEPDIR)/libllvmcodegen_la-BranchFolding.Plo
2657
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2658
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/BranchFolding.cpp' object='libllvmcodegen_la-BranchFolding.lo' libtool=yes @AMDEPBACKSLASH@
2659
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2660
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-BranchFolding.lo `test -f 'llvm/lib/CodeGen/BranchFolding.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/BranchFolding.cpp
2661
-
2662
-libllvmcodegen_la-CriticalAntiDepBreaker.lo: llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
2663
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-CriticalAntiDepBreaker.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-CriticalAntiDepBreaker.Tpo -c -o libllvmcodegen_la-CriticalAntiDepBreaker.lo `test -f 'llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
2664
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-CriticalAntiDepBreaker.Tpo $(DEPDIR)/libllvmcodegen_la-CriticalAntiDepBreaker.Plo
2665
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2666
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp' object='libllvmcodegen_la-CriticalAntiDepBreaker.lo' libtool=yes @AMDEPBACKSLASH@
2667
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2668
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-CriticalAntiDepBreaker.lo `test -f 'llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
2669
-
2670
-libllvmcodegen_la-CodePlacementOpt.lo: llvm/lib/CodeGen/CodePlacementOpt.cpp
2671
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-CodePlacementOpt.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-CodePlacementOpt.Tpo -c -o libllvmcodegen_la-CodePlacementOpt.lo `test -f 'llvm/lib/CodeGen/CodePlacementOpt.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/CodePlacementOpt.cpp
2672
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-CodePlacementOpt.Tpo $(DEPDIR)/libllvmcodegen_la-CodePlacementOpt.Plo
2673
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2674
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/CodePlacementOpt.cpp' object='libllvmcodegen_la-CodePlacementOpt.lo' libtool=yes @AMDEPBACKSLASH@
2675
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2676
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-CodePlacementOpt.lo `test -f 'llvm/lib/CodeGen/CodePlacementOpt.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/CodePlacementOpt.cpp
2677
-
2678
-libllvmcodegen_la-DeadMachineInstructionElim.lo: llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
2679
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-DeadMachineInstructionElim.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-DeadMachineInstructionElim.Tpo -c -o libllvmcodegen_la-DeadMachineInstructionElim.lo `test -f 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
2680
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-DeadMachineInstructionElim.Tpo $(DEPDIR)/libllvmcodegen_la-DeadMachineInstructionElim.Plo
2681
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2682
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/DeadMachineInstructionElim.cpp' object='libllvmcodegen_la-DeadMachineInstructionElim.lo' libtool=yes @AMDEPBACKSLASH@
2683
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2684
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-DeadMachineInstructionElim.lo `test -f 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
2685
-
2686
-libllvmcodegen_la-DwarfEHPrepare.lo: llvm/lib/CodeGen/DwarfEHPrepare.cpp
2687
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-DwarfEHPrepare.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-DwarfEHPrepare.Tpo -c -o libllvmcodegen_la-DwarfEHPrepare.lo `test -f 'llvm/lib/CodeGen/DwarfEHPrepare.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/DwarfEHPrepare.cpp
2688
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-DwarfEHPrepare.Tpo $(DEPDIR)/libllvmcodegen_la-DwarfEHPrepare.Plo
2689
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2690
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/DwarfEHPrepare.cpp' object='libllvmcodegen_la-DwarfEHPrepare.lo' libtool=yes @AMDEPBACKSLASH@
2691
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2692
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-DwarfEHPrepare.lo `test -f 'llvm/lib/CodeGen/DwarfEHPrepare.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/DwarfEHPrepare.cpp
2693
-
2694
-libllvmcodegen_la-ELFCodeEmitter.lo: llvm/lib/CodeGen/ELFCodeEmitter.cpp
2695
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ELFCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ELFCodeEmitter.Tpo -c -o libllvmcodegen_la-ELFCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ELFCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFCodeEmitter.cpp
2696
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ELFCodeEmitter.Tpo $(DEPDIR)/libllvmcodegen_la-ELFCodeEmitter.Plo
2697
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2698
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ELFCodeEmitter.cpp' object='libllvmcodegen_la-ELFCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
2699
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2700
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ELFCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ELFCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFCodeEmitter.cpp
2701
-
2702
-libllvmcodegen_la-ELFWriter.lo: llvm/lib/CodeGen/ELFWriter.cpp
2703
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ELFWriter.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ELFWriter.Tpo -c -o libllvmcodegen_la-ELFWriter.lo `test -f 'llvm/lib/CodeGen/ELFWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFWriter.cpp
2704
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ELFWriter.Tpo $(DEPDIR)/libllvmcodegen_la-ELFWriter.Plo
2705
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2706
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ELFWriter.cpp' object='libllvmcodegen_la-ELFWriter.lo' libtool=yes @AMDEPBACKSLASH@
2707
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2708
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ELFWriter.lo `test -f 'llvm/lib/CodeGen/ELFWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFWriter.cpp
2709
-
2710
-libllvmcodegen_la-ExactHazardRecognizer.lo: llvm/lib/CodeGen/ExactHazardRecognizer.cpp
2711
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ExactHazardRecognizer.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ExactHazardRecognizer.Tpo -c -o libllvmcodegen_la-ExactHazardRecognizer.lo `test -f 'llvm/lib/CodeGen/ExactHazardRecognizer.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ExactHazardRecognizer.cpp
2712
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ExactHazardRecognizer.Tpo $(DEPDIR)/libllvmcodegen_la-ExactHazardRecognizer.Plo
2713
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2714
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ExactHazardRecognizer.cpp' object='libllvmcodegen_la-ExactHazardRecognizer.lo' libtool=yes @AMDEPBACKSLASH@
2715
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2716
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ExactHazardRecognizer.lo `test -f 'llvm/lib/CodeGen/ExactHazardRecognizer.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ExactHazardRecognizer.cpp
2717
-
2718
-libllvmcodegen_la-GCMetadata.lo: llvm/lib/CodeGen/GCMetadata.cpp
2719
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-GCMetadata.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-GCMetadata.Tpo -c -o libllvmcodegen_la-GCMetadata.lo `test -f 'llvm/lib/CodeGen/GCMetadata.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/GCMetadata.cpp
2720
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-GCMetadata.Tpo $(DEPDIR)/libllvmcodegen_la-GCMetadata.Plo
2721
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2722
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/GCMetadata.cpp' object='libllvmcodegen_la-GCMetadata.lo' libtool=yes @AMDEPBACKSLASH@
2723
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2724
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-GCMetadata.lo `test -f 'llvm/lib/CodeGen/GCMetadata.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/GCMetadata.cpp
2725
-
2726
-libllvmcodegen_la-GCMetadataPrinter.lo: llvm/lib/CodeGen/GCMetadataPrinter.cpp
2727
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-GCMetadataPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-GCMetadataPrinter.Tpo -c -o libllvmcodegen_la-GCMetadataPrinter.lo `test -f 'llvm/lib/CodeGen/GCMetadataPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/GCMetadataPrinter.cpp
2728
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-GCMetadataPrinter.Tpo $(DEPDIR)/libllvmcodegen_la-GCMetadataPrinter.Plo
2729
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2730
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/GCMetadataPrinter.cpp' object='libllvmcodegen_la-GCMetadataPrinter.lo' libtool=yes @AMDEPBACKSLASH@
2731
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2732
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-GCMetadataPrinter.lo `test -f 'llvm/lib/CodeGen/GCMetadataPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/GCMetadataPrinter.cpp
2733
-
2734
-libllvmcodegen_la-GCStrategy.lo: llvm/lib/CodeGen/GCStrategy.cpp
2735
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-GCStrategy.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-GCStrategy.Tpo -c -o libllvmcodegen_la-GCStrategy.lo `test -f 'llvm/lib/CodeGen/GCStrategy.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/GCStrategy.cpp
2736
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-GCStrategy.Tpo $(DEPDIR)/libllvmcodegen_la-GCStrategy.Plo
2737
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2738
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/GCStrategy.cpp' object='libllvmcodegen_la-GCStrategy.lo' libtool=yes @AMDEPBACKSLASH@
2739
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2740
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-GCStrategy.lo `test -f 'llvm/lib/CodeGen/GCStrategy.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/GCStrategy.cpp
2741
-
2742
-libllvmcodegen_la-IfConversion.lo: llvm/lib/CodeGen/IfConversion.cpp
2743
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-IfConversion.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-IfConversion.Tpo -c -o libllvmcodegen_la-IfConversion.lo `test -f 'llvm/lib/CodeGen/IfConversion.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/IfConversion.cpp
2744
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-IfConversion.Tpo $(DEPDIR)/libllvmcodegen_la-IfConversion.Plo
2745
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2746
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/IfConversion.cpp' object='libllvmcodegen_la-IfConversion.lo' libtool=yes @AMDEPBACKSLASH@
2747
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2748
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-IfConversion.lo `test -f 'llvm/lib/CodeGen/IfConversion.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/IfConversion.cpp
2749
-
2750
-libllvmcodegen_la-IntrinsicLowering.lo: llvm/lib/CodeGen/IntrinsicLowering.cpp
2751
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-IntrinsicLowering.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-IntrinsicLowering.Tpo -c -o libllvmcodegen_la-IntrinsicLowering.lo `test -f 'llvm/lib/CodeGen/IntrinsicLowering.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/IntrinsicLowering.cpp
2752
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-IntrinsicLowering.Tpo $(DEPDIR)/libllvmcodegen_la-IntrinsicLowering.Plo
2753
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2754
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/IntrinsicLowering.cpp' object='libllvmcodegen_la-IntrinsicLowering.lo' libtool=yes @AMDEPBACKSLASH@
2755
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2756
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-IntrinsicLowering.lo `test -f 'llvm/lib/CodeGen/IntrinsicLowering.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/IntrinsicLowering.cpp
2757
-
2758
-libllvmcodegen_la-LLVMTargetMachine.lo: llvm/lib/CodeGen/LLVMTargetMachine.cpp
2759
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-LLVMTargetMachine.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-LLVMTargetMachine.Tpo -c -o libllvmcodegen_la-LLVMTargetMachine.lo `test -f 'llvm/lib/CodeGen/LLVMTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LLVMTargetMachine.cpp
2760
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-LLVMTargetMachine.Tpo $(DEPDIR)/libllvmcodegen_la-LLVMTargetMachine.Plo
2761
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2762
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LLVMTargetMachine.cpp' object='libllvmcodegen_la-LLVMTargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
2763
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2764
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-LLVMTargetMachine.lo `test -f 'llvm/lib/CodeGen/LLVMTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LLVMTargetMachine.cpp
2765
-
2766
-libllvmcodegen_la-LatencyPriorityQueue.lo: llvm/lib/CodeGen/LatencyPriorityQueue.cpp
2767
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-LatencyPriorityQueue.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-LatencyPriorityQueue.Tpo -c -o libllvmcodegen_la-LatencyPriorityQueue.lo `test -f 'llvm/lib/CodeGen/LatencyPriorityQueue.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LatencyPriorityQueue.cpp
2768
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-LatencyPriorityQueue.Tpo $(DEPDIR)/libllvmcodegen_la-LatencyPriorityQueue.Plo
2769
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2770
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LatencyPriorityQueue.cpp' object='libllvmcodegen_la-LatencyPriorityQueue.lo' libtool=yes @AMDEPBACKSLASH@
2771
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2772
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-LatencyPriorityQueue.lo `test -f 'llvm/lib/CodeGen/LatencyPriorityQueue.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LatencyPriorityQueue.cpp
2773
-
2774
-libllvmcodegen_la-LiveInterval.lo: llvm/lib/CodeGen/LiveInterval.cpp
2775
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-LiveInterval.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-LiveInterval.Tpo -c -o libllvmcodegen_la-LiveInterval.lo `test -f 'llvm/lib/CodeGen/LiveInterval.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveInterval.cpp
2776
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-LiveInterval.Tpo $(DEPDIR)/libllvmcodegen_la-LiveInterval.Plo
2777
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2778
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LiveInterval.cpp' object='libllvmcodegen_la-LiveInterval.lo' libtool=yes @AMDEPBACKSLASH@
2779
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2780
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-LiveInterval.lo `test -f 'llvm/lib/CodeGen/LiveInterval.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveInterval.cpp
2781
-
2782
-libllvmcodegen_la-LiveIntervalAnalysis.lo: llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
2783
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-LiveIntervalAnalysis.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-LiveIntervalAnalysis.Tpo -c -o libllvmcodegen_la-LiveIntervalAnalysis.lo `test -f 'llvm/lib/CodeGen/LiveIntervalAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
2784
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-LiveIntervalAnalysis.Tpo $(DEPDIR)/libllvmcodegen_la-LiveIntervalAnalysis.Plo
2785
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2786
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LiveIntervalAnalysis.cpp' object='libllvmcodegen_la-LiveIntervalAnalysis.lo' libtool=yes @AMDEPBACKSLASH@
2787
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2788
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-LiveIntervalAnalysis.lo `test -f 'llvm/lib/CodeGen/LiveIntervalAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
2789
-
2790
-libllvmcodegen_la-LiveStackAnalysis.lo: llvm/lib/CodeGen/LiveStackAnalysis.cpp
2791
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-LiveStackAnalysis.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-LiveStackAnalysis.Tpo -c -o libllvmcodegen_la-LiveStackAnalysis.lo `test -f 'llvm/lib/CodeGen/LiveStackAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveStackAnalysis.cpp
2792
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-LiveStackAnalysis.Tpo $(DEPDIR)/libllvmcodegen_la-LiveStackAnalysis.Plo
2793
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2794
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LiveStackAnalysis.cpp' object='libllvmcodegen_la-LiveStackAnalysis.lo' libtool=yes @AMDEPBACKSLASH@
2795
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2796
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-LiveStackAnalysis.lo `test -f 'llvm/lib/CodeGen/LiveStackAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveStackAnalysis.cpp
2797
-
2798
-libllvmcodegen_la-LiveVariables.lo: llvm/lib/CodeGen/LiveVariables.cpp
2799
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-LiveVariables.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-LiveVariables.Tpo -c -o libllvmcodegen_la-LiveVariables.lo `test -f 'llvm/lib/CodeGen/LiveVariables.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveVariables.cpp
2800
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-LiveVariables.Tpo $(DEPDIR)/libllvmcodegen_la-LiveVariables.Plo
2801
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2802
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LiveVariables.cpp' object='libllvmcodegen_la-LiveVariables.lo' libtool=yes @AMDEPBACKSLASH@
2803
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2804
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-LiveVariables.lo `test -f 'llvm/lib/CodeGen/LiveVariables.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveVariables.cpp
2805
-
2806
-libllvmcodegen_la-LowerSubregs.lo: llvm/lib/CodeGen/LowerSubregs.cpp
2807
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-LowerSubregs.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-LowerSubregs.Tpo -c -o libllvmcodegen_la-LowerSubregs.lo `test -f 'llvm/lib/CodeGen/LowerSubregs.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LowerSubregs.cpp
2808
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-LowerSubregs.Tpo $(DEPDIR)/libllvmcodegen_la-LowerSubregs.Plo
2809
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2810
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LowerSubregs.cpp' object='libllvmcodegen_la-LowerSubregs.lo' libtool=yes @AMDEPBACKSLASH@
2811
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2812
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-LowerSubregs.lo `test -f 'llvm/lib/CodeGen/LowerSubregs.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LowerSubregs.cpp
2813
-
2814
-libllvmcodegen_la-MachineBasicBlock.lo: llvm/lib/CodeGen/MachineBasicBlock.cpp
2815
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineBasicBlock.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineBasicBlock.Tpo -c -o libllvmcodegen_la-MachineBasicBlock.lo `test -f 'llvm/lib/CodeGen/MachineBasicBlock.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineBasicBlock.cpp
2816
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineBasicBlock.Tpo $(DEPDIR)/libllvmcodegen_la-MachineBasicBlock.Plo
2817
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2818
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineBasicBlock.cpp' object='libllvmcodegen_la-MachineBasicBlock.lo' libtool=yes @AMDEPBACKSLASH@
2819
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2820
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineBasicBlock.lo `test -f 'llvm/lib/CodeGen/MachineBasicBlock.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineBasicBlock.cpp
2821
-
2822
-libllvmcodegen_la-MachineDominators.lo: llvm/lib/CodeGen/MachineDominators.cpp
2823
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineDominators.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineDominators.Tpo -c -o libllvmcodegen_la-MachineDominators.lo `test -f 'llvm/lib/CodeGen/MachineDominators.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineDominators.cpp
2824
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineDominators.Tpo $(DEPDIR)/libllvmcodegen_la-MachineDominators.Plo
2825
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2826
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineDominators.cpp' object='libllvmcodegen_la-MachineDominators.lo' libtool=yes @AMDEPBACKSLASH@
2827
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2828
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineDominators.lo `test -f 'llvm/lib/CodeGen/MachineDominators.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineDominators.cpp
2829
-
2830
-libllvmcodegen_la-MachineFunction.lo: llvm/lib/CodeGen/MachineFunction.cpp
2831
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineFunction.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineFunction.Tpo -c -o libllvmcodegen_la-MachineFunction.lo `test -f 'llvm/lib/CodeGen/MachineFunction.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunction.cpp
2832
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineFunction.Tpo $(DEPDIR)/libllvmcodegen_la-MachineFunction.Plo
2833
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2834
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineFunction.cpp' object='libllvmcodegen_la-MachineFunction.lo' libtool=yes @AMDEPBACKSLASH@
2835
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2836
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineFunction.lo `test -f 'llvm/lib/CodeGen/MachineFunction.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunction.cpp
2837
-
2838
-libllvmcodegen_la-MachineFunctionAnalysis.lo: llvm/lib/CodeGen/MachineFunctionAnalysis.cpp
2839
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineFunctionAnalysis.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineFunctionAnalysis.Tpo -c -o libllvmcodegen_la-MachineFunctionAnalysis.lo `test -f 'llvm/lib/CodeGen/MachineFunctionAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunctionAnalysis.cpp
2840
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineFunctionAnalysis.Tpo $(DEPDIR)/libllvmcodegen_la-MachineFunctionAnalysis.Plo
2841
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2842
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineFunctionAnalysis.cpp' object='libllvmcodegen_la-MachineFunctionAnalysis.lo' libtool=yes @AMDEPBACKSLASH@
2843
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2844
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineFunctionAnalysis.lo `test -f 'llvm/lib/CodeGen/MachineFunctionAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunctionAnalysis.cpp
2845
-
2846
-libllvmcodegen_la-MachineFunctionPass.lo: llvm/lib/CodeGen/MachineFunctionPass.cpp
2847
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineFunctionPass.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineFunctionPass.Tpo -c -o libllvmcodegen_la-MachineFunctionPass.lo `test -f 'llvm/lib/CodeGen/MachineFunctionPass.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunctionPass.cpp
2848
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineFunctionPass.Tpo $(DEPDIR)/libllvmcodegen_la-MachineFunctionPass.Plo
2849
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2850
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineFunctionPass.cpp' object='libllvmcodegen_la-MachineFunctionPass.lo' libtool=yes @AMDEPBACKSLASH@
2851
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2852
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineFunctionPass.lo `test -f 'llvm/lib/CodeGen/MachineFunctionPass.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunctionPass.cpp
2853
-
2854
-libllvmcodegen_la-MachineInstr.lo: llvm/lib/CodeGen/MachineInstr.cpp
2855
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineInstr.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineInstr.Tpo -c -o libllvmcodegen_la-MachineInstr.lo `test -f 'llvm/lib/CodeGen/MachineInstr.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineInstr.cpp
2856
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineInstr.Tpo $(DEPDIR)/libllvmcodegen_la-MachineInstr.Plo
2857
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2858
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineInstr.cpp' object='libllvmcodegen_la-MachineInstr.lo' libtool=yes @AMDEPBACKSLASH@
2859
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2860
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineInstr.lo `test -f 'llvm/lib/CodeGen/MachineInstr.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineInstr.cpp
2861
-
2862
-libllvmcodegen_la-MachineLICM.lo: llvm/lib/CodeGen/MachineLICM.cpp
2863
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineLICM.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineLICM.Tpo -c -o libllvmcodegen_la-MachineLICM.lo `test -f 'llvm/lib/CodeGen/MachineLICM.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineLICM.cpp
2864
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineLICM.Tpo $(DEPDIR)/libllvmcodegen_la-MachineLICM.Plo
2865
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2866
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineLICM.cpp' object='libllvmcodegen_la-MachineLICM.lo' libtool=yes @AMDEPBACKSLASH@
2867
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2868
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineLICM.lo `test -f 'llvm/lib/CodeGen/MachineLICM.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineLICM.cpp
2869
-
2870
-libllvmcodegen_la-MachineLoopInfo.lo: llvm/lib/CodeGen/MachineLoopInfo.cpp
2871
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineLoopInfo.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineLoopInfo.Tpo -c -o libllvmcodegen_la-MachineLoopInfo.lo `test -f 'llvm/lib/CodeGen/MachineLoopInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineLoopInfo.cpp
2872
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineLoopInfo.Tpo $(DEPDIR)/libllvmcodegen_la-MachineLoopInfo.Plo
2873
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2874
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineLoopInfo.cpp' object='libllvmcodegen_la-MachineLoopInfo.lo' libtool=yes @AMDEPBACKSLASH@
2875
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2876
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineLoopInfo.lo `test -f 'llvm/lib/CodeGen/MachineLoopInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineLoopInfo.cpp
2877
-
2878
-libllvmcodegen_la-MachineModuleInfo.lo: llvm/lib/CodeGen/MachineModuleInfo.cpp
2879
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineModuleInfo.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineModuleInfo.Tpo -c -o libllvmcodegen_la-MachineModuleInfo.lo `test -f 'llvm/lib/CodeGen/MachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineModuleInfo.cpp
2880
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineModuleInfo.Tpo $(DEPDIR)/libllvmcodegen_la-MachineModuleInfo.Plo
2881
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2882
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineModuleInfo.cpp' object='libllvmcodegen_la-MachineModuleInfo.lo' libtool=yes @AMDEPBACKSLASH@
2883
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2884
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineModuleInfo.lo `test -f 'llvm/lib/CodeGen/MachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineModuleInfo.cpp
2885
-
2886
-libllvmcodegen_la-MachineModuleInfoImpls.lo: llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
2887
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineModuleInfoImpls.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineModuleInfoImpls.Tpo -c -o libllvmcodegen_la-MachineModuleInfoImpls.lo `test -f 'llvm/lib/CodeGen/MachineModuleInfoImpls.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
2888
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineModuleInfoImpls.Tpo $(DEPDIR)/libllvmcodegen_la-MachineModuleInfoImpls.Plo
2889
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2890
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineModuleInfoImpls.cpp' object='libllvmcodegen_la-MachineModuleInfoImpls.lo' libtool=yes @AMDEPBACKSLASH@
2891
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2892
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineModuleInfoImpls.lo `test -f 'llvm/lib/CodeGen/MachineModuleInfoImpls.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
2893
-
2894
-libllvmcodegen_la-MachinePassRegistry.lo: llvm/lib/CodeGen/MachinePassRegistry.cpp
2895
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachinePassRegistry.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachinePassRegistry.Tpo -c -o libllvmcodegen_la-MachinePassRegistry.lo `test -f 'llvm/lib/CodeGen/MachinePassRegistry.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachinePassRegistry.cpp
2896
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachinePassRegistry.Tpo $(DEPDIR)/libllvmcodegen_la-MachinePassRegistry.Plo
2897
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2898
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachinePassRegistry.cpp' object='libllvmcodegen_la-MachinePassRegistry.lo' libtool=yes @AMDEPBACKSLASH@
2899
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2900
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachinePassRegistry.lo `test -f 'llvm/lib/CodeGen/MachinePassRegistry.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachinePassRegistry.cpp
2901
-
2902
-libllvmcodegen_la-MachineRegisterInfo.lo: llvm/lib/CodeGen/MachineRegisterInfo.cpp
2903
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineRegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineRegisterInfo.Tpo -c -o libllvmcodegen_la-MachineRegisterInfo.lo `test -f 'llvm/lib/CodeGen/MachineRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineRegisterInfo.cpp
2904
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineRegisterInfo.Tpo $(DEPDIR)/libllvmcodegen_la-MachineRegisterInfo.Plo
2905
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2906
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineRegisterInfo.cpp' object='libllvmcodegen_la-MachineRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
2907
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2908
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineRegisterInfo.lo `test -f 'llvm/lib/CodeGen/MachineRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineRegisterInfo.cpp
2909
-
2910
-libllvmcodegen_la-MachineSink.lo: llvm/lib/CodeGen/MachineSink.cpp
2911
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineSink.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineSink.Tpo -c -o libllvmcodegen_la-MachineSink.lo `test -f 'llvm/lib/CodeGen/MachineSink.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineSink.cpp
2912
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineSink.Tpo $(DEPDIR)/libllvmcodegen_la-MachineSink.Plo
2913
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2914
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineSink.cpp' object='libllvmcodegen_la-MachineSink.lo' libtool=yes @AMDEPBACKSLASH@
2915
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2916
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineSink.lo `test -f 'llvm/lib/CodeGen/MachineSink.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineSink.cpp
2917
-
2918
-libllvmcodegen_la-MachineSSAUpdater.lo: llvm/lib/CodeGen/MachineSSAUpdater.cpp
2919
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineSSAUpdater.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineSSAUpdater.Tpo -c -o libllvmcodegen_la-MachineSSAUpdater.lo `test -f 'llvm/lib/CodeGen/MachineSSAUpdater.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineSSAUpdater.cpp
2920
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineSSAUpdater.Tpo $(DEPDIR)/libllvmcodegen_la-MachineSSAUpdater.Plo
2921
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2922
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineSSAUpdater.cpp' object='libllvmcodegen_la-MachineSSAUpdater.lo' libtool=yes @AMDEPBACKSLASH@
2923
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2924
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineSSAUpdater.lo `test -f 'llvm/lib/CodeGen/MachineSSAUpdater.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineSSAUpdater.cpp
2925
-
2926
-libllvmcodegen_la-MachineVerifier.lo: llvm/lib/CodeGen/MachineVerifier.cpp
2927
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MachineVerifier.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MachineVerifier.Tpo -c -o libllvmcodegen_la-MachineVerifier.lo `test -f 'llvm/lib/CodeGen/MachineVerifier.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineVerifier.cpp
2928
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MachineVerifier.Tpo $(DEPDIR)/libllvmcodegen_la-MachineVerifier.Plo
2929
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2930
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineVerifier.cpp' object='libllvmcodegen_la-MachineVerifier.lo' libtool=yes @AMDEPBACKSLASH@
2931
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2932
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MachineVerifier.lo `test -f 'llvm/lib/CodeGen/MachineVerifier.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineVerifier.cpp
2933
-
2934
-libllvmcodegen_la-MaxStackAlignment.lo: llvm/lib/CodeGen/MaxStackAlignment.cpp
2935
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-MaxStackAlignment.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-MaxStackAlignment.Tpo -c -o libllvmcodegen_la-MaxStackAlignment.lo `test -f 'llvm/lib/CodeGen/MaxStackAlignment.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MaxStackAlignment.cpp
2936
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-MaxStackAlignment.Tpo $(DEPDIR)/libllvmcodegen_la-MaxStackAlignment.Plo
2937
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2938
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MaxStackAlignment.cpp' object='libllvmcodegen_la-MaxStackAlignment.lo' libtool=yes @AMDEPBACKSLASH@
2939
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2940
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-MaxStackAlignment.lo `test -f 'llvm/lib/CodeGen/MaxStackAlignment.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MaxStackAlignment.cpp
2941
-
2942
-libllvmcodegen_la-ObjectCodeEmitter.lo: llvm/lib/CodeGen/ObjectCodeEmitter.cpp
2943
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ObjectCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ObjectCodeEmitter.Tpo -c -o libllvmcodegen_la-ObjectCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ObjectCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ObjectCodeEmitter.cpp
2944
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ObjectCodeEmitter.Tpo $(DEPDIR)/libllvmcodegen_la-ObjectCodeEmitter.Plo
2945
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2946
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ObjectCodeEmitter.cpp' object='libllvmcodegen_la-ObjectCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
2947
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2948
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ObjectCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ObjectCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ObjectCodeEmitter.cpp
2949
-
2950
-libllvmcodegen_la-OcamlGC.lo: llvm/lib/CodeGen/OcamlGC.cpp
2951
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-OcamlGC.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-OcamlGC.Tpo -c -o libllvmcodegen_la-OcamlGC.lo `test -f 'llvm/lib/CodeGen/OcamlGC.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/OcamlGC.cpp
2952
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-OcamlGC.Tpo $(DEPDIR)/libllvmcodegen_la-OcamlGC.Plo
2953
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2954
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/OcamlGC.cpp' object='libllvmcodegen_la-OcamlGC.lo' libtool=yes @AMDEPBACKSLASH@
2955
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2956
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-OcamlGC.lo `test -f 'llvm/lib/CodeGen/OcamlGC.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/OcamlGC.cpp
2957
-
2958
-libllvmcodegen_la-PHIElimination.lo: llvm/lib/CodeGen/PHIElimination.cpp
2959
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-PHIElimination.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-PHIElimination.Tpo -c -o libllvmcodegen_la-PHIElimination.lo `test -f 'llvm/lib/CodeGen/PHIElimination.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PHIElimination.cpp
2960
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-PHIElimination.Tpo $(DEPDIR)/libllvmcodegen_la-PHIElimination.Plo
2961
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2962
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/PHIElimination.cpp' object='libllvmcodegen_la-PHIElimination.lo' libtool=yes @AMDEPBACKSLASH@
2963
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2964
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-PHIElimination.lo `test -f 'llvm/lib/CodeGen/PHIElimination.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PHIElimination.cpp
2965
-
2966
-libllvmcodegen_la-Passes.lo: llvm/lib/CodeGen/Passes.cpp
2967
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-Passes.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-Passes.Tpo -c -o libllvmcodegen_la-Passes.lo `test -f 'llvm/lib/CodeGen/Passes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/Passes.cpp
2968
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-Passes.Tpo $(DEPDIR)/libllvmcodegen_la-Passes.Plo
2969
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2970
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/Passes.cpp' object='libllvmcodegen_la-Passes.lo' libtool=yes @AMDEPBACKSLASH@
2971
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2972
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-Passes.lo `test -f 'llvm/lib/CodeGen/Passes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/Passes.cpp
2973
-
2974
-libllvmcodegen_la-PostRASchedulerList.lo: llvm/lib/CodeGen/PostRASchedulerList.cpp
2975
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-PostRASchedulerList.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-PostRASchedulerList.Tpo -c -o libllvmcodegen_la-PostRASchedulerList.lo `test -f 'llvm/lib/CodeGen/PostRASchedulerList.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PostRASchedulerList.cpp
2976
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-PostRASchedulerList.Tpo $(DEPDIR)/libllvmcodegen_la-PostRASchedulerList.Plo
2977
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2978
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/PostRASchedulerList.cpp' object='libllvmcodegen_la-PostRASchedulerList.lo' libtool=yes @AMDEPBACKSLASH@
2979
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2980
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-PostRASchedulerList.lo `test -f 'llvm/lib/CodeGen/PostRASchedulerList.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PostRASchedulerList.cpp
2981
-
2982
-libllvmcodegen_la-PreAllocSplitting.lo: llvm/lib/CodeGen/PreAllocSplitting.cpp
2983
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-PreAllocSplitting.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-PreAllocSplitting.Tpo -c -o libllvmcodegen_la-PreAllocSplitting.lo `test -f 'llvm/lib/CodeGen/PreAllocSplitting.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PreAllocSplitting.cpp
2984
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-PreAllocSplitting.Tpo $(DEPDIR)/libllvmcodegen_la-PreAllocSplitting.Plo
2985
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2986
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/PreAllocSplitting.cpp' object='libllvmcodegen_la-PreAllocSplitting.lo' libtool=yes @AMDEPBACKSLASH@
2987
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2988
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-PreAllocSplitting.lo `test -f 'llvm/lib/CodeGen/PreAllocSplitting.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PreAllocSplitting.cpp
2989
-
2990
-libllvmcodegen_la-ProcessImplicitDefs.lo: llvm/lib/CodeGen/ProcessImplicitDefs.cpp
2991
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ProcessImplicitDefs.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ProcessImplicitDefs.Tpo -c -o libllvmcodegen_la-ProcessImplicitDefs.lo `test -f 'llvm/lib/CodeGen/ProcessImplicitDefs.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ProcessImplicitDefs.cpp
2992
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ProcessImplicitDefs.Tpo $(DEPDIR)/libllvmcodegen_la-ProcessImplicitDefs.Plo
2993
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
2994
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ProcessImplicitDefs.cpp' object='libllvmcodegen_la-ProcessImplicitDefs.lo' libtool=yes @AMDEPBACKSLASH@
2995
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
2996
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ProcessImplicitDefs.lo `test -f 'llvm/lib/CodeGen/ProcessImplicitDefs.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ProcessImplicitDefs.cpp
2997
-
2998
-libllvmcodegen_la-PrologEpilogInserter.lo: llvm/lib/CodeGen/PrologEpilogInserter.cpp
2999
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-PrologEpilogInserter.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-PrologEpilogInserter.Tpo -c -o libllvmcodegen_la-PrologEpilogInserter.lo `test -f 'llvm/lib/CodeGen/PrologEpilogInserter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PrologEpilogInserter.cpp
3000
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-PrologEpilogInserter.Tpo $(DEPDIR)/libllvmcodegen_la-PrologEpilogInserter.Plo
3001
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3002
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/PrologEpilogInserter.cpp' object='libllvmcodegen_la-PrologEpilogInserter.lo' libtool=yes @AMDEPBACKSLASH@
3003
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3004
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-PrologEpilogInserter.lo `test -f 'llvm/lib/CodeGen/PrologEpilogInserter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PrologEpilogInserter.cpp
3005
-
3006
-libllvmcodegen_la-PseudoSourceValue.lo: llvm/lib/CodeGen/PseudoSourceValue.cpp
3007
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-PseudoSourceValue.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-PseudoSourceValue.Tpo -c -o libllvmcodegen_la-PseudoSourceValue.lo `test -f 'llvm/lib/CodeGen/PseudoSourceValue.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PseudoSourceValue.cpp
3008
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-PseudoSourceValue.Tpo $(DEPDIR)/libllvmcodegen_la-PseudoSourceValue.Plo
3009
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3010
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/PseudoSourceValue.cpp' object='libllvmcodegen_la-PseudoSourceValue.lo' libtool=yes @AMDEPBACKSLASH@
3011
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3012
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-PseudoSourceValue.lo `test -f 'llvm/lib/CodeGen/PseudoSourceValue.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PseudoSourceValue.cpp
3013
-
3014
-libllvmcodegen_la-RegAllocLinearScan.lo: llvm/lib/CodeGen/RegAllocLinearScan.cpp
3015
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-RegAllocLinearScan.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-RegAllocLinearScan.Tpo -c -o libllvmcodegen_la-RegAllocLinearScan.lo `test -f 'llvm/lib/CodeGen/RegAllocLinearScan.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegAllocLinearScan.cpp
3016
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-RegAllocLinearScan.Tpo $(DEPDIR)/libllvmcodegen_la-RegAllocLinearScan.Plo
3017
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3018
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/RegAllocLinearScan.cpp' object='libllvmcodegen_la-RegAllocLinearScan.lo' libtool=yes @AMDEPBACKSLASH@
3019
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3020
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-RegAllocLinearScan.lo `test -f 'llvm/lib/CodeGen/RegAllocLinearScan.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegAllocLinearScan.cpp
3021
-
3022
-libllvmcodegen_la-RegAllocLocal.lo: llvm/lib/CodeGen/RegAllocLocal.cpp
3023
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-RegAllocLocal.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-RegAllocLocal.Tpo -c -o libllvmcodegen_la-RegAllocLocal.lo `test -f 'llvm/lib/CodeGen/RegAllocLocal.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegAllocLocal.cpp
3024
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-RegAllocLocal.Tpo $(DEPDIR)/libllvmcodegen_la-RegAllocLocal.Plo
3025
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3026
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/RegAllocLocal.cpp' object='libllvmcodegen_la-RegAllocLocal.lo' libtool=yes @AMDEPBACKSLASH@
3027
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3028
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-RegAllocLocal.lo `test -f 'llvm/lib/CodeGen/RegAllocLocal.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegAllocLocal.cpp
3029
-
3030
-libllvmcodegen_la-RegAllocPBQP.lo: llvm/lib/CodeGen/RegAllocPBQP.cpp
3031
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-RegAllocPBQP.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-RegAllocPBQP.Tpo -c -o libllvmcodegen_la-RegAllocPBQP.lo `test -f 'llvm/lib/CodeGen/RegAllocPBQP.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegAllocPBQP.cpp
3032
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-RegAllocPBQP.Tpo $(DEPDIR)/libllvmcodegen_la-RegAllocPBQP.Plo
3033
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3034
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/RegAllocPBQP.cpp' object='libllvmcodegen_la-RegAllocPBQP.lo' libtool=yes @AMDEPBACKSLASH@
3035
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3036
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-RegAllocPBQP.lo `test -f 'llvm/lib/CodeGen/RegAllocPBQP.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegAllocPBQP.cpp
3037
-
3038
-libllvmcodegen_la-RegisterCoalescer.lo: llvm/lib/CodeGen/RegisterCoalescer.cpp
3039
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-RegisterCoalescer.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-RegisterCoalescer.Tpo -c -o libllvmcodegen_la-RegisterCoalescer.lo `test -f 'llvm/lib/CodeGen/RegisterCoalescer.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegisterCoalescer.cpp
3040
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-RegisterCoalescer.Tpo $(DEPDIR)/libllvmcodegen_la-RegisterCoalescer.Plo
3041
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3042
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/RegisterCoalescer.cpp' object='libllvmcodegen_la-RegisterCoalescer.lo' libtool=yes @AMDEPBACKSLASH@
3043
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3044
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-RegisterCoalescer.lo `test -f 'llvm/lib/CodeGen/RegisterCoalescer.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegisterCoalescer.cpp
3045
-
3046
-libllvmcodegen_la-RegisterScavenging.lo: llvm/lib/CodeGen/RegisterScavenging.cpp
3047
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-RegisterScavenging.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-RegisterScavenging.Tpo -c -o libllvmcodegen_la-RegisterScavenging.lo `test -f 'llvm/lib/CodeGen/RegisterScavenging.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegisterScavenging.cpp
3048
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-RegisterScavenging.Tpo $(DEPDIR)/libllvmcodegen_la-RegisterScavenging.Plo
3049
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3050
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/RegisterScavenging.cpp' object='libllvmcodegen_la-RegisterScavenging.lo' libtool=yes @AMDEPBACKSLASH@
3051
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3052
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-RegisterScavenging.lo `test -f 'llvm/lib/CodeGen/RegisterScavenging.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegisterScavenging.cpp
3053
-
3054
-libllvmcodegen_la-ScheduleDAG.lo: llvm/lib/CodeGen/ScheduleDAG.cpp
3055
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ScheduleDAG.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ScheduleDAG.Tpo -c -o libllvmcodegen_la-ScheduleDAG.lo `test -f 'llvm/lib/CodeGen/ScheduleDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAG.cpp
3056
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ScheduleDAG.Tpo $(DEPDIR)/libllvmcodegen_la-ScheduleDAG.Plo
3057
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3058
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ScheduleDAG.cpp' object='libllvmcodegen_la-ScheduleDAG.lo' libtool=yes @AMDEPBACKSLASH@
3059
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3060
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ScheduleDAG.lo `test -f 'llvm/lib/CodeGen/ScheduleDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAG.cpp
3061
-
3062
-libllvmcodegen_la-ScheduleDAGEmit.lo: llvm/lib/CodeGen/ScheduleDAGEmit.cpp
3063
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ScheduleDAGEmit.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ScheduleDAGEmit.Tpo -c -o libllvmcodegen_la-ScheduleDAGEmit.lo `test -f 'llvm/lib/CodeGen/ScheduleDAGEmit.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAGEmit.cpp
3064
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ScheduleDAGEmit.Tpo $(DEPDIR)/libllvmcodegen_la-ScheduleDAGEmit.Plo
3065
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3066
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ScheduleDAGEmit.cpp' object='libllvmcodegen_la-ScheduleDAGEmit.lo' libtool=yes @AMDEPBACKSLASH@
3067
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3068
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ScheduleDAGEmit.lo `test -f 'llvm/lib/CodeGen/ScheduleDAGEmit.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAGEmit.cpp
3069
-
3070
-libllvmcodegen_la-ScheduleDAGInstrs.lo: llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
3071
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ScheduleDAGInstrs.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ScheduleDAGInstrs.Tpo -c -o libllvmcodegen_la-ScheduleDAGInstrs.lo `test -f 'llvm/lib/CodeGen/ScheduleDAGInstrs.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
3072
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ScheduleDAGInstrs.Tpo $(DEPDIR)/libllvmcodegen_la-ScheduleDAGInstrs.Plo
3073
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3074
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ScheduleDAGInstrs.cpp' object='libllvmcodegen_la-ScheduleDAGInstrs.lo' libtool=yes @AMDEPBACKSLASH@
3075
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3076
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ScheduleDAGInstrs.lo `test -f 'llvm/lib/CodeGen/ScheduleDAGInstrs.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
3077
-
3078
-libllvmcodegen_la-ScheduleDAGPrinter.lo: llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
3079
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ScheduleDAGPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ScheduleDAGPrinter.Tpo -c -o libllvmcodegen_la-ScheduleDAGPrinter.lo `test -f 'llvm/lib/CodeGen/ScheduleDAGPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
3080
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ScheduleDAGPrinter.Tpo $(DEPDIR)/libllvmcodegen_la-ScheduleDAGPrinter.Plo
3081
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3082
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ScheduleDAGPrinter.cpp' object='libllvmcodegen_la-ScheduleDAGPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3083
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3084
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ScheduleDAGPrinter.lo `test -f 'llvm/lib/CodeGen/ScheduleDAGPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
3085
-
3086
-libllvmcodegen_la-ShadowStackGC.lo: llvm/lib/CodeGen/ShadowStackGC.cpp
3087
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ShadowStackGC.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ShadowStackGC.Tpo -c -o libllvmcodegen_la-ShadowStackGC.lo `test -f 'llvm/lib/CodeGen/ShadowStackGC.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ShadowStackGC.cpp
3088
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ShadowStackGC.Tpo $(DEPDIR)/libllvmcodegen_la-ShadowStackGC.Plo
3089
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3090
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ShadowStackGC.cpp' object='libllvmcodegen_la-ShadowStackGC.lo' libtool=yes @AMDEPBACKSLASH@
3091
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3092
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ShadowStackGC.lo `test -f 'llvm/lib/CodeGen/ShadowStackGC.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ShadowStackGC.cpp
3093
-
3094
-libllvmcodegen_la-ShrinkWrapping.lo: llvm/lib/CodeGen/ShrinkWrapping.cpp
3095
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-ShrinkWrapping.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-ShrinkWrapping.Tpo -c -o libllvmcodegen_la-ShrinkWrapping.lo `test -f 'llvm/lib/CodeGen/ShrinkWrapping.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ShrinkWrapping.cpp
3096
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-ShrinkWrapping.Tpo $(DEPDIR)/libllvmcodegen_la-ShrinkWrapping.Plo
3097
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3098
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ShrinkWrapping.cpp' object='libllvmcodegen_la-ShrinkWrapping.lo' libtool=yes @AMDEPBACKSLASH@
3099
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3100
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-ShrinkWrapping.lo `test -f 'llvm/lib/CodeGen/ShrinkWrapping.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ShrinkWrapping.cpp
3101
-
3102
-libllvmcodegen_la-SimpleRegisterCoalescing.lo: llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp
3103
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-SimpleRegisterCoalescing.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-SimpleRegisterCoalescing.Tpo -c -o libllvmcodegen_la-SimpleRegisterCoalescing.lo `test -f 'llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp
3104
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-SimpleRegisterCoalescing.Tpo $(DEPDIR)/libllvmcodegen_la-SimpleRegisterCoalescing.Plo
3105
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3106
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp' object='libllvmcodegen_la-SimpleRegisterCoalescing.lo' libtool=yes @AMDEPBACKSLASH@
3107
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3108
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-SimpleRegisterCoalescing.lo `test -f 'llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp
3109
-
3110
-libllvmcodegen_la-SjLjEHPrepare.lo: llvm/lib/CodeGen/SjLjEHPrepare.cpp
3111
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-SjLjEHPrepare.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-SjLjEHPrepare.Tpo -c -o libllvmcodegen_la-SjLjEHPrepare.lo `test -f 'llvm/lib/CodeGen/SjLjEHPrepare.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SjLjEHPrepare.cpp
3112
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-SjLjEHPrepare.Tpo $(DEPDIR)/libllvmcodegen_la-SjLjEHPrepare.Plo
3113
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3114
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SjLjEHPrepare.cpp' object='libllvmcodegen_la-SjLjEHPrepare.lo' libtool=yes @AMDEPBACKSLASH@
3115
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3116
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-SjLjEHPrepare.lo `test -f 'llvm/lib/CodeGen/SjLjEHPrepare.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SjLjEHPrepare.cpp
3117
-
3118
-libllvmcodegen_la-SlotIndexes.lo: llvm/lib/CodeGen/SlotIndexes.cpp
3119
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-SlotIndexes.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-SlotIndexes.Tpo -c -o libllvmcodegen_la-SlotIndexes.lo `test -f 'llvm/lib/CodeGen/SlotIndexes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SlotIndexes.cpp
3120
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-SlotIndexes.Tpo $(DEPDIR)/libllvmcodegen_la-SlotIndexes.Plo
3121
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3122
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SlotIndexes.cpp' object='libllvmcodegen_la-SlotIndexes.lo' libtool=yes @AMDEPBACKSLASH@
3123
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3124
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-SlotIndexes.lo `test -f 'llvm/lib/CodeGen/SlotIndexes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SlotIndexes.cpp
3125
-
3126
-libllvmcodegen_la-Spiller.lo: llvm/lib/CodeGen/Spiller.cpp
3127
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-Spiller.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-Spiller.Tpo -c -o libllvmcodegen_la-Spiller.lo `test -f 'llvm/lib/CodeGen/Spiller.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/Spiller.cpp
3128
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-Spiller.Tpo $(DEPDIR)/libllvmcodegen_la-Spiller.Plo
3129
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3130
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/Spiller.cpp' object='libllvmcodegen_la-Spiller.lo' libtool=yes @AMDEPBACKSLASH@
3131
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3132
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-Spiller.lo `test -f 'llvm/lib/CodeGen/Spiller.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/Spiller.cpp
3133
-
3134
-libllvmcodegen_la-StackProtector.lo: llvm/lib/CodeGen/StackProtector.cpp
3135
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-StackProtector.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-StackProtector.Tpo -c -o libllvmcodegen_la-StackProtector.lo `test -f 'llvm/lib/CodeGen/StackProtector.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/StackProtector.cpp
3136
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-StackProtector.Tpo $(DEPDIR)/libllvmcodegen_la-StackProtector.Plo
3137
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3138
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/StackProtector.cpp' object='libllvmcodegen_la-StackProtector.lo' libtool=yes @AMDEPBACKSLASH@
3139
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3140
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-StackProtector.lo `test -f 'llvm/lib/CodeGen/StackProtector.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/StackProtector.cpp
3141
-
3142
-libllvmcodegen_la-StackSlotColoring.lo: llvm/lib/CodeGen/StackSlotColoring.cpp
3143
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-StackSlotColoring.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-StackSlotColoring.Tpo -c -o libllvmcodegen_la-StackSlotColoring.lo `test -f 'llvm/lib/CodeGen/StackSlotColoring.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/StackSlotColoring.cpp
3144
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-StackSlotColoring.Tpo $(DEPDIR)/libllvmcodegen_la-StackSlotColoring.Plo
3145
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3146
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/StackSlotColoring.cpp' object='libllvmcodegen_la-StackSlotColoring.lo' libtool=yes @AMDEPBACKSLASH@
3147
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3148
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-StackSlotColoring.lo `test -f 'llvm/lib/CodeGen/StackSlotColoring.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/StackSlotColoring.cpp
3149
-
3150
-libllvmcodegen_la-StrongPHIElimination.lo: llvm/lib/CodeGen/StrongPHIElimination.cpp
3151
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-StrongPHIElimination.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-StrongPHIElimination.Tpo -c -o libllvmcodegen_la-StrongPHIElimination.lo `test -f 'llvm/lib/CodeGen/StrongPHIElimination.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/StrongPHIElimination.cpp
3152
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-StrongPHIElimination.Tpo $(DEPDIR)/libllvmcodegen_la-StrongPHIElimination.Plo
3153
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3154
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/StrongPHIElimination.cpp' object='libllvmcodegen_la-StrongPHIElimination.lo' libtool=yes @AMDEPBACKSLASH@
3155
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3156
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-StrongPHIElimination.lo `test -f 'llvm/lib/CodeGen/StrongPHIElimination.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/StrongPHIElimination.cpp
3157
-
3158
-libllvmcodegen_la-TailDuplication.lo: llvm/lib/CodeGen/TailDuplication.cpp
3159
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-TailDuplication.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-TailDuplication.Tpo -c -o libllvmcodegen_la-TailDuplication.lo `test -f 'llvm/lib/CodeGen/TailDuplication.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/TailDuplication.cpp
3160
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-TailDuplication.Tpo $(DEPDIR)/libllvmcodegen_la-TailDuplication.Plo
3161
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3162
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/TailDuplication.cpp' object='libllvmcodegen_la-TailDuplication.lo' libtool=yes @AMDEPBACKSLASH@
3163
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3164
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-TailDuplication.lo `test -f 'llvm/lib/CodeGen/TailDuplication.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/TailDuplication.cpp
3165
-
3166
-libllvmcodegen_la-TargetInstrInfoImpl.lo: llvm/lib/CodeGen/TargetInstrInfoImpl.cpp
3167
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-TargetInstrInfoImpl.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-TargetInstrInfoImpl.Tpo -c -o libllvmcodegen_la-TargetInstrInfoImpl.lo `test -f 'llvm/lib/CodeGen/TargetInstrInfoImpl.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/TargetInstrInfoImpl.cpp
3168
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-TargetInstrInfoImpl.Tpo $(DEPDIR)/libllvmcodegen_la-TargetInstrInfoImpl.Plo
3169
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3170
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/TargetInstrInfoImpl.cpp' object='libllvmcodegen_la-TargetInstrInfoImpl.lo' libtool=yes @AMDEPBACKSLASH@
3171
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3172
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-TargetInstrInfoImpl.lo `test -f 'llvm/lib/CodeGen/TargetInstrInfoImpl.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/TargetInstrInfoImpl.cpp
3173
-
3174
-libllvmcodegen_la-TwoAddressInstructionPass.lo: llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
3175
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-TwoAddressInstructionPass.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-TwoAddressInstructionPass.Tpo -c -o libllvmcodegen_la-TwoAddressInstructionPass.lo `test -f 'llvm/lib/CodeGen/TwoAddressInstructionPass.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
3176
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-TwoAddressInstructionPass.Tpo $(DEPDIR)/libllvmcodegen_la-TwoAddressInstructionPass.Plo
3177
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3178
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/TwoAddressInstructionPass.cpp' object='libllvmcodegen_la-TwoAddressInstructionPass.lo' libtool=yes @AMDEPBACKSLASH@
3179
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3180
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-TwoAddressInstructionPass.lo `test -f 'llvm/lib/CodeGen/TwoAddressInstructionPass.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
3181
-
3182
-libllvmcodegen_la-UnreachableBlockElim.lo: llvm/lib/CodeGen/UnreachableBlockElim.cpp
3183
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-UnreachableBlockElim.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-UnreachableBlockElim.Tpo -c -o libllvmcodegen_la-UnreachableBlockElim.lo `test -f 'llvm/lib/CodeGen/UnreachableBlockElim.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/UnreachableBlockElim.cpp
3184
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-UnreachableBlockElim.Tpo $(DEPDIR)/libllvmcodegen_la-UnreachableBlockElim.Plo
3185
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3186
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/UnreachableBlockElim.cpp' object='libllvmcodegen_la-UnreachableBlockElim.lo' libtool=yes @AMDEPBACKSLASH@
3187
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3188
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-UnreachableBlockElim.lo `test -f 'llvm/lib/CodeGen/UnreachableBlockElim.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/UnreachableBlockElim.cpp
3189
-
3190
-libllvmcodegen_la-VirtRegMap.lo: llvm/lib/CodeGen/VirtRegMap.cpp
3191
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-VirtRegMap.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-VirtRegMap.Tpo -c -o libllvmcodegen_la-VirtRegMap.lo `test -f 'llvm/lib/CodeGen/VirtRegMap.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/VirtRegMap.cpp
3192
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-VirtRegMap.Tpo $(DEPDIR)/libllvmcodegen_la-VirtRegMap.Plo
3193
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3194
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/VirtRegMap.cpp' object='libllvmcodegen_la-VirtRegMap.lo' libtool=yes @AMDEPBACKSLASH@
3195
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3196
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-VirtRegMap.lo `test -f 'llvm/lib/CodeGen/VirtRegMap.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/VirtRegMap.cpp
3197
-
3198
-libllvmcodegen_la-VirtRegRewriter.lo: llvm/lib/CodeGen/VirtRegRewriter.cpp
3199
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcodegen_la-VirtRegRewriter.lo -MD -MP -MF $(DEPDIR)/libllvmcodegen_la-VirtRegRewriter.Tpo -c -o libllvmcodegen_la-VirtRegRewriter.lo `test -f 'llvm/lib/CodeGen/VirtRegRewriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/VirtRegRewriter.cpp
3200
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcodegen_la-VirtRegRewriter.Tpo $(DEPDIR)/libllvmcodegen_la-VirtRegRewriter.Plo
3201
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3202
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/VirtRegRewriter.cpp' object='libllvmcodegen_la-VirtRegRewriter.lo' libtool=yes @AMDEPBACKSLASH@
3203
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3204
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcodegen_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcodegen_la-VirtRegRewriter.lo `test -f 'llvm/lib/CodeGen/VirtRegRewriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/VirtRegRewriter.cpp
3205
-
3206
-libllvmcore_la-AsmWriter.lo: llvm/lib/VMCore/AsmWriter.cpp
3207
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-AsmWriter.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-AsmWriter.Tpo -c -o libllvmcore_la-AsmWriter.lo `test -f 'llvm/lib/VMCore/AsmWriter.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/AsmWriter.cpp
3208
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-AsmWriter.Tpo $(DEPDIR)/libllvmcore_la-AsmWriter.Plo
3209
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3210
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/AsmWriter.cpp' object='libllvmcore_la-AsmWriter.lo' libtool=yes @AMDEPBACKSLASH@
3211
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3212
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-AsmWriter.lo `test -f 'llvm/lib/VMCore/AsmWriter.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/AsmWriter.cpp
3213
-
3214
-libllvmcore_la-Attributes.lo: llvm/lib/VMCore/Attributes.cpp
3215
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Attributes.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Attributes.Tpo -c -o libllvmcore_la-Attributes.lo `test -f 'llvm/lib/VMCore/Attributes.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Attributes.cpp
3216
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Attributes.Tpo $(DEPDIR)/libllvmcore_la-Attributes.Plo
3217
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3218
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Attributes.cpp' object='libllvmcore_la-Attributes.lo' libtool=yes @AMDEPBACKSLASH@
3219
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3220
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Attributes.lo `test -f 'llvm/lib/VMCore/Attributes.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Attributes.cpp
3221
-
3222
-libllvmcore_la-AutoUpgrade.lo: llvm/lib/VMCore/AutoUpgrade.cpp
3223
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-AutoUpgrade.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-AutoUpgrade.Tpo -c -o libllvmcore_la-AutoUpgrade.lo `test -f 'llvm/lib/VMCore/AutoUpgrade.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/AutoUpgrade.cpp
3224
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-AutoUpgrade.Tpo $(DEPDIR)/libllvmcore_la-AutoUpgrade.Plo
3225
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3226
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/AutoUpgrade.cpp' object='libllvmcore_la-AutoUpgrade.lo' libtool=yes @AMDEPBACKSLASH@
3227
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3228
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-AutoUpgrade.lo `test -f 'llvm/lib/VMCore/AutoUpgrade.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/AutoUpgrade.cpp
3229
-
3230
-libllvmcore_la-BasicBlock.lo: llvm/lib/VMCore/BasicBlock.cpp
3231
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-BasicBlock.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-BasicBlock.Tpo -c -o libllvmcore_la-BasicBlock.lo `test -f 'llvm/lib/VMCore/BasicBlock.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/BasicBlock.cpp
3232
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-BasicBlock.Tpo $(DEPDIR)/libllvmcore_la-BasicBlock.Plo
3233
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3234
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/BasicBlock.cpp' object='libllvmcore_la-BasicBlock.lo' libtool=yes @AMDEPBACKSLASH@
3235
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3236
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-BasicBlock.lo `test -f 'llvm/lib/VMCore/BasicBlock.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/BasicBlock.cpp
3237
-
3238
-libllvmcore_la-ConstantFold.lo: llvm/lib/VMCore/ConstantFold.cpp
3239
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-ConstantFold.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-ConstantFold.Tpo -c -o libllvmcore_la-ConstantFold.lo `test -f 'llvm/lib/VMCore/ConstantFold.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ConstantFold.cpp
3240
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-ConstantFold.Tpo $(DEPDIR)/libllvmcore_la-ConstantFold.Plo
3241
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3242
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/ConstantFold.cpp' object='libllvmcore_la-ConstantFold.lo' libtool=yes @AMDEPBACKSLASH@
3243
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3244
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-ConstantFold.lo `test -f 'llvm/lib/VMCore/ConstantFold.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ConstantFold.cpp
3245
-
3246
-libllvmcore_la-Constants.lo: llvm/lib/VMCore/Constants.cpp
3247
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Constants.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Constants.Tpo -c -o libllvmcore_la-Constants.lo `test -f 'llvm/lib/VMCore/Constants.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Constants.cpp
3248
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Constants.Tpo $(DEPDIR)/libllvmcore_la-Constants.Plo
3249
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3250
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Constants.cpp' object='libllvmcore_la-Constants.lo' libtool=yes @AMDEPBACKSLASH@
3251
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3252
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Constants.lo `test -f 'llvm/lib/VMCore/Constants.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Constants.cpp
3253
-
3254
-libllvmcore_la-Core.lo: llvm/lib/VMCore/Core.cpp
3255
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Core.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Core.Tpo -c -o libllvmcore_la-Core.lo `test -f 'llvm/lib/VMCore/Core.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Core.cpp
3256
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Core.Tpo $(DEPDIR)/libllvmcore_la-Core.Plo
3257
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3258
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Core.cpp' object='libllvmcore_la-Core.lo' libtool=yes @AMDEPBACKSLASH@
3259
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3260
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Core.lo `test -f 'llvm/lib/VMCore/Core.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Core.cpp
3261
-
3262
-libllvmcore_la-Dominators.lo: llvm/lib/VMCore/Dominators.cpp
3263
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Dominators.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Dominators.Tpo -c -o libllvmcore_la-Dominators.lo `test -f 'llvm/lib/VMCore/Dominators.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Dominators.cpp
3264
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Dominators.Tpo $(DEPDIR)/libllvmcore_la-Dominators.Plo
3265
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3266
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Dominators.cpp' object='libllvmcore_la-Dominators.lo' libtool=yes @AMDEPBACKSLASH@
3267
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3268
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Dominators.lo `test -f 'llvm/lib/VMCore/Dominators.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Dominators.cpp
3269
-
3270
-libllvmcore_la-Function.lo: llvm/lib/VMCore/Function.cpp
3271
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Function.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Function.Tpo -c -o libllvmcore_la-Function.lo `test -f 'llvm/lib/VMCore/Function.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Function.cpp
3272
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Function.Tpo $(DEPDIR)/libllvmcore_la-Function.Plo
3273
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3274
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Function.cpp' object='libllvmcore_la-Function.lo' libtool=yes @AMDEPBACKSLASH@
3275
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3276
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Function.lo `test -f 'llvm/lib/VMCore/Function.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Function.cpp
3277
-
3278
-libllvmcore_la-Globals.lo: llvm/lib/VMCore/Globals.cpp
3279
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Globals.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Globals.Tpo -c -o libllvmcore_la-Globals.lo `test -f 'llvm/lib/VMCore/Globals.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Globals.cpp
3280
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Globals.Tpo $(DEPDIR)/libllvmcore_la-Globals.Plo
3281
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3282
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Globals.cpp' object='libllvmcore_la-Globals.lo' libtool=yes @AMDEPBACKSLASH@
3283
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3284
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Globals.lo `test -f 'llvm/lib/VMCore/Globals.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Globals.cpp
3285
-
3286
-libllvmcore_la-InlineAsm.lo: llvm/lib/VMCore/InlineAsm.cpp
3287
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-InlineAsm.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-InlineAsm.Tpo -c -o libllvmcore_la-InlineAsm.lo `test -f 'llvm/lib/VMCore/InlineAsm.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/InlineAsm.cpp
3288
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-InlineAsm.Tpo $(DEPDIR)/libllvmcore_la-InlineAsm.Plo
3289
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3290
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/InlineAsm.cpp' object='libllvmcore_la-InlineAsm.lo' libtool=yes @AMDEPBACKSLASH@
3291
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3292
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-InlineAsm.lo `test -f 'llvm/lib/VMCore/InlineAsm.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/InlineAsm.cpp
3293
-
3294
-libllvmcore_la-Instruction.lo: llvm/lib/VMCore/Instruction.cpp
3295
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Instruction.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Instruction.Tpo -c -o libllvmcore_la-Instruction.lo `test -f 'llvm/lib/VMCore/Instruction.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Instruction.cpp
3296
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Instruction.Tpo $(DEPDIR)/libllvmcore_la-Instruction.Plo
3297
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3298
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Instruction.cpp' object='libllvmcore_la-Instruction.lo' libtool=yes @AMDEPBACKSLASH@
3299
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3300
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Instruction.lo `test -f 'llvm/lib/VMCore/Instruction.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Instruction.cpp
3301
-
3302
-libllvmcore_la-Instructions.lo: llvm/lib/VMCore/Instructions.cpp
3303
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Instructions.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Instructions.Tpo -c -o libllvmcore_la-Instructions.lo `test -f 'llvm/lib/VMCore/Instructions.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Instructions.cpp
3304
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Instructions.Tpo $(DEPDIR)/libllvmcore_la-Instructions.Plo
3305
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3306
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Instructions.cpp' object='libllvmcore_la-Instructions.lo' libtool=yes @AMDEPBACKSLASH@
3307
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3308
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Instructions.lo `test -f 'llvm/lib/VMCore/Instructions.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Instructions.cpp
2356
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclamavcxx_la_CXXFLAGS) $(CXXFLAGS) -c -o libclamavcxx_la-bytecode2llvm.lo `test -f 'bytecode2llvm.cpp' || echo '$(srcdir)/'`bytecode2llvm.cpp
3309 2357
 
3310
-libllvmcore_la-IntrinsicInst.lo: llvm/lib/VMCore/IntrinsicInst.cpp
3311
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-IntrinsicInst.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-IntrinsicInst.Tpo -c -o libllvmcore_la-IntrinsicInst.lo `test -f 'llvm/lib/VMCore/IntrinsicInst.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/IntrinsicInst.cpp
3312
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-IntrinsicInst.Tpo $(DEPDIR)/libllvmcore_la-IntrinsicInst.Plo
2358
+gtest-death-test.lo: llvm/utils/unittest/googletest/gtest-death-test.cc
2359
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gtest-death-test.lo -MD -MP -MF $(DEPDIR)/gtest-death-test.Tpo -c -o gtest-death-test.lo `test -f 'llvm/utils/unittest/googletest/gtest-death-test.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-death-test.cc
2360
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gtest-death-test.Tpo $(DEPDIR)/gtest-death-test.Plo
3313 2361
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3314
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/IntrinsicInst.cpp' object='libllvmcore_la-IntrinsicInst.lo' libtool=yes @AMDEPBACKSLASH@
2362
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-death-test.cc' object='gtest-death-test.lo' libtool=yes @AMDEPBACKSLASH@
3315 2363
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3316
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-IntrinsicInst.lo `test -f 'llvm/lib/VMCore/IntrinsicInst.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/IntrinsicInst.cpp
2364
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gtest-death-test.lo `test -f 'llvm/utils/unittest/googletest/gtest-death-test.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-death-test.cc
3317 2365
 
3318
-libllvmcore_la-LLVMContext.lo: llvm/lib/VMCore/LLVMContext.cpp
3319
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-LLVMContext.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-LLVMContext.Tpo -c -o libllvmcore_la-LLVMContext.lo `test -f 'llvm/lib/VMCore/LLVMContext.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/LLVMContext.cpp
3320
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-LLVMContext.Tpo $(DEPDIR)/libllvmcore_la-LLVMContext.Plo
2366
+gtest-filepath.lo: llvm/utils/unittest/googletest/gtest-filepath.cc
2367
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gtest-filepath.lo -MD -MP -MF $(DEPDIR)/gtest-filepath.Tpo -c -o gtest-filepath.lo `test -f 'llvm/utils/unittest/googletest/gtest-filepath.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-filepath.cc
2368
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gtest-filepath.Tpo $(DEPDIR)/gtest-filepath.Plo
3321 2369
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3322
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/LLVMContext.cpp' object='libllvmcore_la-LLVMContext.lo' libtool=yes @AMDEPBACKSLASH@
2370
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-filepath.cc' object='gtest-filepath.lo' libtool=yes @AMDEPBACKSLASH@
3323 2371
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3324
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-LLVMContext.lo `test -f 'llvm/lib/VMCore/LLVMContext.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/LLVMContext.cpp
2372
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gtest-filepath.lo `test -f 'llvm/utils/unittest/googletest/gtest-filepath.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-filepath.cc
3325 2373
 
3326
-libllvmcore_la-LeakDetector.lo: llvm/lib/VMCore/LeakDetector.cpp
3327
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-LeakDetector.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-LeakDetector.Tpo -c -o libllvmcore_la-LeakDetector.lo `test -f 'llvm/lib/VMCore/LeakDetector.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/LeakDetector.cpp
3328
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-LeakDetector.Tpo $(DEPDIR)/libllvmcore_la-LeakDetector.Plo
2374
+gtest-port.lo: llvm/utils/unittest/googletest/gtest-port.cc
2375
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gtest-port.lo -MD -MP -MF $(DEPDIR)/gtest-port.Tpo -c -o gtest-port.lo `test -f 'llvm/utils/unittest/googletest/gtest-port.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-port.cc
2376
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gtest-port.Tpo $(DEPDIR)/gtest-port.Plo
3329 2377
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3330
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/LeakDetector.cpp' object='libllvmcore_la-LeakDetector.lo' libtool=yes @AMDEPBACKSLASH@
2378
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-port.cc' object='gtest-port.lo' libtool=yes @AMDEPBACKSLASH@
3331 2379
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3332
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-LeakDetector.lo `test -f 'llvm/lib/VMCore/LeakDetector.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/LeakDetector.cpp
2380
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gtest-port.lo `test -f 'llvm/utils/unittest/googletest/gtest-port.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-port.cc
3333 2381
 
3334
-libllvmcore_la-Mangler.lo: llvm/lib/VMCore/Mangler.cpp
3335
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Mangler.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Mangler.Tpo -c -o libllvmcore_la-Mangler.lo `test -f 'llvm/lib/VMCore/Mangler.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Mangler.cpp
3336
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Mangler.Tpo $(DEPDIR)/libllvmcore_la-Mangler.Plo
2382
+gtest-test-part.lo: llvm/utils/unittest/googletest/gtest-test-part.cc
2383
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gtest-test-part.lo -MD -MP -MF $(DEPDIR)/gtest-test-part.Tpo -c -o gtest-test-part.lo `test -f 'llvm/utils/unittest/googletest/gtest-test-part.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-test-part.cc
2384
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gtest-test-part.Tpo $(DEPDIR)/gtest-test-part.Plo
3337 2385
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3338
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Mangler.cpp' object='libllvmcore_la-Mangler.lo' libtool=yes @AMDEPBACKSLASH@
2386
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-test-part.cc' object='gtest-test-part.lo' libtool=yes @AMDEPBACKSLASH@
3339 2387
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3340
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Mangler.lo `test -f 'llvm/lib/VMCore/Mangler.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Mangler.cpp
2388
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gtest-test-part.lo `test -f 'llvm/utils/unittest/googletest/gtest-test-part.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-test-part.cc
3341 2389
 
3342
-libllvmcore_la-Metadata.lo: llvm/lib/VMCore/Metadata.cpp
3343
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Metadata.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Metadata.Tpo -c -o libllvmcore_la-Metadata.lo `test -f 'llvm/lib/VMCore/Metadata.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Metadata.cpp
3344
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Metadata.Tpo $(DEPDIR)/libllvmcore_la-Metadata.Plo
2390
+gtest-typed-test.lo: llvm/utils/unittest/googletest/gtest-typed-test.cc
2391
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gtest-typed-test.lo -MD -MP -MF $(DEPDIR)/gtest-typed-test.Tpo -c -o gtest-typed-test.lo `test -f 'llvm/utils/unittest/googletest/gtest-typed-test.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-typed-test.cc
2392
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gtest-typed-test.Tpo $(DEPDIR)/gtest-typed-test.Plo
3345 2393
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3346
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Metadata.cpp' object='libllvmcore_la-Metadata.lo' libtool=yes @AMDEPBACKSLASH@
2394
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest-typed-test.cc' object='gtest-typed-test.lo' libtool=yes @AMDEPBACKSLASH@
3347 2395
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3348
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Metadata.lo `test -f 'llvm/lib/VMCore/Metadata.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Metadata.cpp
2396
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gtest-typed-test.lo `test -f 'llvm/utils/unittest/googletest/gtest-typed-test.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest-typed-test.cc
3349 2397
 
3350
-libllvmcore_la-Module.lo: llvm/lib/VMCore/Module.cpp
3351
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Module.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Module.Tpo -c -o libllvmcore_la-Module.lo `test -f 'llvm/lib/VMCore/Module.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Module.cpp
3352
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Module.Tpo $(DEPDIR)/libllvmcore_la-Module.Plo
2398
+gtest.lo: llvm/utils/unittest/googletest/gtest.cc
2399
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gtest.lo -MD -MP -MF $(DEPDIR)/gtest.Tpo -c -o gtest.lo `test -f 'llvm/utils/unittest/googletest/gtest.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest.cc
2400
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gtest.Tpo $(DEPDIR)/gtest.Plo
3353 2401
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3354
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Module.cpp' object='libllvmcore_la-Module.lo' libtool=yes @AMDEPBACKSLASH@
2402
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/googletest/gtest.cc' object='gtest.lo' libtool=yes @AMDEPBACKSLASH@
3355 2403
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3356
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Module.lo `test -f 'llvm/lib/VMCore/Module.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Module.cpp
2404
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gtest.lo `test -f 'llvm/utils/unittest/googletest/gtest.cc' || echo '$(srcdir)/'`llvm/utils/unittest/googletest/gtest.cc
3357 2405
 
3358
-libllvmcore_la-ModuleProvider.lo: llvm/lib/VMCore/ModuleProvider.cpp
3359
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-ModuleProvider.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-ModuleProvider.Tpo -c -o libllvmcore_la-ModuleProvider.lo `test -f 'llvm/lib/VMCore/ModuleProvider.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ModuleProvider.cpp
3360
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-ModuleProvider.Tpo $(DEPDIR)/libllvmcore_la-ModuleProvider.Plo
2406
+TestMain.lo: llvm/utils/unittest/UnitTestMain/TestMain.cpp
2407
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TestMain.lo -MD -MP -MF $(DEPDIR)/TestMain.Tpo -c -o TestMain.lo `test -f 'llvm/utils/unittest/UnitTestMain/TestMain.cpp' || echo '$(srcdir)/'`llvm/utils/unittest/UnitTestMain/TestMain.cpp
2408
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TestMain.Tpo $(DEPDIR)/TestMain.Plo
3361 2409
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3362
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/ModuleProvider.cpp' object='libllvmcore_la-ModuleProvider.lo' libtool=yes @AMDEPBACKSLASH@
2410
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/unittest/UnitTestMain/TestMain.cpp' object='TestMain.lo' libtool=yes @AMDEPBACKSLASH@
3363 2411
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3364
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-ModuleProvider.lo `test -f 'llvm/lib/VMCore/ModuleProvider.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ModuleProvider.cpp
2412
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TestMain.lo `test -f 'llvm/utils/unittest/UnitTestMain/TestMain.cpp' || echo '$(srcdir)/'`llvm/utils/unittest/UnitTestMain/TestMain.cpp
3365 2413
 
3366
-libllvmcore_la-Pass.lo: llvm/lib/VMCore/Pass.cpp
3367
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Pass.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Pass.Tpo -c -o libllvmcore_la-Pass.lo `test -f 'llvm/lib/VMCore/Pass.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Pass.cpp
3368
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Pass.Tpo $(DEPDIR)/libllvmcore_la-Pass.Plo
2414
+libllvmarmcodegen_la-IfConversion.lo: llvm/lib/CodeGen/IfConversion.cpp
2415
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-IfConversion.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-IfConversion.Tpo -c -o libllvmarmcodegen_la-IfConversion.lo `test -f 'llvm/lib/CodeGen/IfConversion.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/IfConversion.cpp
2416
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-IfConversion.Tpo $(DEPDIR)/libllvmarmcodegen_la-IfConversion.Plo
3369 2417
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3370
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Pass.cpp' object='libllvmcore_la-Pass.lo' libtool=yes @AMDEPBACKSLASH@
2418
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/IfConversion.cpp' object='libllvmarmcodegen_la-IfConversion.lo' libtool=yes @AMDEPBACKSLASH@
3371 2419
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3372
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Pass.lo `test -f 'llvm/lib/VMCore/Pass.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Pass.cpp
2420
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-IfConversion.lo `test -f 'llvm/lib/CodeGen/IfConversion.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/IfConversion.cpp
3373 2421
 
3374
-libllvmcore_la-PassManager.lo: llvm/lib/VMCore/PassManager.cpp
3375
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-PassManager.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-PassManager.Tpo -c -o libllvmcore_la-PassManager.lo `test -f 'llvm/lib/VMCore/PassManager.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/PassManager.cpp
3376
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-PassManager.Tpo $(DEPDIR)/libllvmcore_la-PassManager.Plo
2422
+libllvmarmcodegen_la-ARMBaseInstrInfo.lo: llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
2423
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMBaseInstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMBaseInstrInfo.Tpo -c -o libllvmarmcodegen_la-ARMBaseInstrInfo.lo `test -f 'llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
2424
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMBaseInstrInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMBaseInstrInfo.Plo
3377 2425
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3378
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/PassManager.cpp' object='libllvmcore_la-PassManager.lo' libtool=yes @AMDEPBACKSLASH@
2426
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp' object='libllvmarmcodegen_la-ARMBaseInstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3379 2427
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3380
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-PassManager.lo `test -f 'llvm/lib/VMCore/PassManager.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/PassManager.cpp
2428
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMBaseInstrInfo.lo `test -f 'llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
3381 2429
 
3382
-libllvmcore_la-PrintModulePass.lo: llvm/lib/VMCore/PrintModulePass.cpp
3383
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-PrintModulePass.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-PrintModulePass.Tpo -c -o libllvmcore_la-PrintModulePass.lo `test -f 'llvm/lib/VMCore/PrintModulePass.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/PrintModulePass.cpp
3384
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-PrintModulePass.Tpo $(DEPDIR)/libllvmcore_la-PrintModulePass.Plo
2430
+libllvmarmcodegen_la-ARMBaseRegisterInfo.lo: llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
2431
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMBaseRegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMBaseRegisterInfo.Tpo -c -o libllvmarmcodegen_la-ARMBaseRegisterInfo.lo `test -f 'llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
2432
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMBaseRegisterInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMBaseRegisterInfo.Plo
3385 2433
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3386
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/PrintModulePass.cpp' object='libllvmcore_la-PrintModulePass.lo' libtool=yes @AMDEPBACKSLASH@
2434
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp' object='libllvmarmcodegen_la-ARMBaseRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3387 2435
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3388
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-PrintModulePass.lo `test -f 'llvm/lib/VMCore/PrintModulePass.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/PrintModulePass.cpp
2436
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMBaseRegisterInfo.lo `test -f 'llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
3389 2437
 
3390
-libllvmcore_la-Type.lo: llvm/lib/VMCore/Type.cpp
3391
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Type.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Type.Tpo -c -o libllvmcore_la-Type.lo `test -f 'llvm/lib/VMCore/Type.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Type.cpp
3392
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Type.Tpo $(DEPDIR)/libllvmcore_la-Type.Plo
2438
+libllvmarmcodegen_la-ARMCodeEmitter.lo: llvm/lib/Target/ARM/ARMCodeEmitter.cpp
2439
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMCodeEmitter.Tpo -c -o libllvmarmcodegen_la-ARMCodeEmitter.lo `test -f 'llvm/lib/Target/ARM/ARMCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMCodeEmitter.cpp
2440
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMCodeEmitter.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMCodeEmitter.Plo
3393 2441
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3394
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Type.cpp' object='libllvmcore_la-Type.lo' libtool=yes @AMDEPBACKSLASH@
2442
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMCodeEmitter.cpp' object='libllvmarmcodegen_la-ARMCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
3395 2443
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3396
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Type.lo `test -f 'llvm/lib/VMCore/Type.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Type.cpp
2444
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMCodeEmitter.lo `test -f 'llvm/lib/Target/ARM/ARMCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMCodeEmitter.cpp
3397 2445
 
3398
-libllvmcore_la-TypeSymbolTable.lo: llvm/lib/VMCore/TypeSymbolTable.cpp
3399
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-TypeSymbolTable.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-TypeSymbolTable.Tpo -c -o libllvmcore_la-TypeSymbolTable.lo `test -f 'llvm/lib/VMCore/TypeSymbolTable.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/TypeSymbolTable.cpp
3400
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-TypeSymbolTable.Tpo $(DEPDIR)/libllvmcore_la-TypeSymbolTable.Plo
2446
+libllvmarmcodegen_la-ARMConstantIslandPass.lo: llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
2447
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMConstantIslandPass.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMConstantIslandPass.Tpo -c -o libllvmarmcodegen_la-ARMConstantIslandPass.lo `test -f 'llvm/lib/Target/ARM/ARMConstantIslandPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
2448
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMConstantIslandPass.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMConstantIslandPass.Plo
3401 2449
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3402
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/TypeSymbolTable.cpp' object='libllvmcore_la-TypeSymbolTable.lo' libtool=yes @AMDEPBACKSLASH@
2450
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMConstantIslandPass.cpp' object='libllvmarmcodegen_la-ARMConstantIslandPass.lo' libtool=yes @AMDEPBACKSLASH@
3403 2451
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3404
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-TypeSymbolTable.lo `test -f 'llvm/lib/VMCore/TypeSymbolTable.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/TypeSymbolTable.cpp
2452
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMConstantIslandPass.lo `test -f 'llvm/lib/Target/ARM/ARMConstantIslandPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
3405 2453
 
3406
-libllvmcore_la-Use.lo: llvm/lib/VMCore/Use.cpp
3407
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Use.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Use.Tpo -c -o libllvmcore_la-Use.lo `test -f 'llvm/lib/VMCore/Use.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Use.cpp
3408
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Use.Tpo $(DEPDIR)/libllvmcore_la-Use.Plo
2454
+libllvmarmcodegen_la-ARMConstantPoolValue.lo: llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
2455
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMConstantPoolValue.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMConstantPoolValue.Tpo -c -o libllvmarmcodegen_la-ARMConstantPoolValue.lo `test -f 'llvm/lib/Target/ARM/ARMConstantPoolValue.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
2456
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMConstantPoolValue.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMConstantPoolValue.Plo
3409 2457
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3410
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Use.cpp' object='libllvmcore_la-Use.lo' libtool=yes @AMDEPBACKSLASH@
2458
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMConstantPoolValue.cpp' object='libllvmarmcodegen_la-ARMConstantPoolValue.lo' libtool=yes @AMDEPBACKSLASH@
3411 2459
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3412
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Use.lo `test -f 'llvm/lib/VMCore/Use.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Use.cpp
2460
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMConstantPoolValue.lo `test -f 'llvm/lib/Target/ARM/ARMConstantPoolValue.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
3413 2461
 
3414
-libllvmcore_la-Value.lo: llvm/lib/VMCore/Value.cpp
3415
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Value.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Value.Tpo -c -o libllvmcore_la-Value.lo `test -f 'llvm/lib/VMCore/Value.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Value.cpp
3416
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Value.Tpo $(DEPDIR)/libllvmcore_la-Value.Plo
2462
+libllvmarmcodegen_la-ARMExpandPseudoInsts.lo: llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
2463
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMExpandPseudoInsts.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMExpandPseudoInsts.Tpo -c -o libllvmarmcodegen_la-ARMExpandPseudoInsts.lo `test -f 'llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
2464
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMExpandPseudoInsts.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMExpandPseudoInsts.Plo
3417 2465
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3418
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Value.cpp' object='libllvmcore_la-Value.lo' libtool=yes @AMDEPBACKSLASH@
2466
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp' object='libllvmarmcodegen_la-ARMExpandPseudoInsts.lo' libtool=yes @AMDEPBACKSLASH@
3419 2467
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3420
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Value.lo `test -f 'llvm/lib/VMCore/Value.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Value.cpp
2468
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMExpandPseudoInsts.lo `test -f 'llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
3421 2469
 
3422
-libllvmcore_la-ValueSymbolTable.lo: llvm/lib/VMCore/ValueSymbolTable.cpp
3423
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-ValueSymbolTable.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-ValueSymbolTable.Tpo -c -o libllvmcore_la-ValueSymbolTable.lo `test -f 'llvm/lib/VMCore/ValueSymbolTable.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ValueSymbolTable.cpp
3424
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-ValueSymbolTable.Tpo $(DEPDIR)/libllvmcore_la-ValueSymbolTable.Plo
2470
+libllvmarmcodegen_la-ARMISelDAGToDAG.lo: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
2471
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMISelDAGToDAG.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMISelDAGToDAG.Tpo -c -o libllvmarmcodegen_la-ARMISelDAGToDAG.lo `test -f 'llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
2472
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMISelDAGToDAG.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMISelDAGToDAG.Plo
3425 2473
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3426
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/ValueSymbolTable.cpp' object='libllvmcore_la-ValueSymbolTable.lo' libtool=yes @AMDEPBACKSLASH@
2474
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp' object='libllvmarmcodegen_la-ARMISelDAGToDAG.lo' libtool=yes @AMDEPBACKSLASH@
3427 2475
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3428
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-ValueSymbolTable.lo `test -f 'llvm/lib/VMCore/ValueSymbolTable.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ValueSymbolTable.cpp
2476
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMISelDAGToDAG.lo `test -f 'llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
3429 2477
 
3430
-libllvmcore_la-ValueTypes.lo: llvm/lib/VMCore/ValueTypes.cpp
3431
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-ValueTypes.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-ValueTypes.Tpo -c -o libllvmcore_la-ValueTypes.lo `test -f 'llvm/lib/VMCore/ValueTypes.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ValueTypes.cpp
3432
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-ValueTypes.Tpo $(DEPDIR)/libllvmcore_la-ValueTypes.Plo
2478
+libllvmarmcodegen_la-ARMISelLowering.lo: llvm/lib/Target/ARM/ARMISelLowering.cpp
2479
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMISelLowering.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMISelLowering.Tpo -c -o libllvmarmcodegen_la-ARMISelLowering.lo `test -f 'llvm/lib/Target/ARM/ARMISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMISelLowering.cpp
2480
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMISelLowering.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMISelLowering.Plo
3433 2481
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3434
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/ValueTypes.cpp' object='libllvmcore_la-ValueTypes.lo' libtool=yes @AMDEPBACKSLASH@
2482
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMISelLowering.cpp' object='libllvmarmcodegen_la-ARMISelLowering.lo' libtool=yes @AMDEPBACKSLASH@
3435 2483
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3436
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-ValueTypes.lo `test -f 'llvm/lib/VMCore/ValueTypes.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ValueTypes.cpp
2484
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMISelLowering.lo `test -f 'llvm/lib/Target/ARM/ARMISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMISelLowering.cpp
3437 2485
 
3438
-libllvmcore_la-Verifier.lo: llvm/lib/VMCore/Verifier.cpp
3439
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmcore_la-Verifier.lo -MD -MP -MF $(DEPDIR)/libllvmcore_la-Verifier.Tpo -c -o libllvmcore_la-Verifier.lo `test -f 'llvm/lib/VMCore/Verifier.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Verifier.cpp
3440
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmcore_la-Verifier.Tpo $(DEPDIR)/libllvmcore_la-Verifier.Plo
2486
+libllvmarmcodegen_la-ARMInstrInfo.lo: llvm/lib/Target/ARM/ARMInstrInfo.cpp
2487
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMInstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMInstrInfo.Tpo -c -o libllvmarmcodegen_la-ARMInstrInfo.lo `test -f 'llvm/lib/Target/ARM/ARMInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMInstrInfo.cpp
2488
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMInstrInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMInstrInfo.Plo
3441 2489
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3442
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Verifier.cpp' object='libllvmcore_la-Verifier.lo' libtool=yes @AMDEPBACKSLASH@
2490
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMInstrInfo.cpp' object='libllvmarmcodegen_la-ARMInstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3443 2491
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3444
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmcore_la_CPPFLAGS) $(CPPFLAGS) $(libllvmcore_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmcore_la-Verifier.lo `test -f 'llvm/lib/VMCore/Verifier.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Verifier.cpp
2492
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMInstrInfo.lo `test -f 'llvm/lib/Target/ARM/ARMInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMInstrInfo.cpp
3445 2493
 
3446
-libllvmexecutionengine_la-ExecutionEngine.lo: llvm/lib/ExecutionEngine/ExecutionEngine.cpp
3447
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmexecutionengine_la-ExecutionEngine.lo -MD -MP -MF $(DEPDIR)/libllvmexecutionengine_la-ExecutionEngine.Tpo -c -o libllvmexecutionengine_la-ExecutionEngine.lo `test -f 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/ExecutionEngine.cpp
3448
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmexecutionengine_la-ExecutionEngine.Tpo $(DEPDIR)/libllvmexecutionengine_la-ExecutionEngine.Plo
2494
+libllvmarmcodegen_la-ARMJITInfo.lo: llvm/lib/Target/ARM/ARMJITInfo.cpp
2495
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMJITInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMJITInfo.Tpo -c -o libllvmarmcodegen_la-ARMJITInfo.lo `test -f 'llvm/lib/Target/ARM/ARMJITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMJITInfo.cpp
2496
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMJITInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMJITInfo.Plo
3449 2497
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3450
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/ExecutionEngine.cpp' object='libllvmexecutionengine_la-ExecutionEngine.lo' libtool=yes @AMDEPBACKSLASH@
2498
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMJITInfo.cpp' object='libllvmarmcodegen_la-ARMJITInfo.lo' libtool=yes @AMDEPBACKSLASH@
3451 2499
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3452
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmexecutionengine_la-ExecutionEngine.lo `test -f 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/ExecutionEngine.cpp
2500
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMJITInfo.lo `test -f 'llvm/lib/Target/ARM/ARMJITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMJITInfo.cpp
3453 2501
 
3454
-libllvmexecutionengine_la-Intercept.lo: llvm/lib/ExecutionEngine/JIT/Intercept.cpp
3455
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmexecutionengine_la-Intercept.lo -MD -MP -MF $(DEPDIR)/libllvmexecutionengine_la-Intercept.Tpo -c -o libllvmexecutionengine_la-Intercept.lo `test -f 'llvm/lib/ExecutionEngine/JIT/Intercept.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/Intercept.cpp
3456
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmexecutionengine_la-Intercept.Tpo $(DEPDIR)/libllvmexecutionengine_la-Intercept.Plo
2502
+libllvmarmcodegen_la-ARMLoadStoreOptimizer.lo: llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
2503
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMLoadStoreOptimizer.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMLoadStoreOptimizer.Tpo -c -o libllvmarmcodegen_la-ARMLoadStoreOptimizer.lo `test -f 'llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
2504
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMLoadStoreOptimizer.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMLoadStoreOptimizer.Plo
3457 2505
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3458
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/Intercept.cpp' object='libllvmexecutionengine_la-Intercept.lo' libtool=yes @AMDEPBACKSLASH@
2506
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp' object='libllvmarmcodegen_la-ARMLoadStoreOptimizer.lo' libtool=yes @AMDEPBACKSLASH@
3459 2507
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3460
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmexecutionengine_la-Intercept.lo `test -f 'llvm/lib/ExecutionEngine/JIT/Intercept.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/Intercept.cpp
2508
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMLoadStoreOptimizer.lo `test -f 'llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
3461 2509
 
3462
-libllvmexecutionengine_la-JIT.lo: llvm/lib/ExecutionEngine/JIT/JIT.cpp
3463
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmexecutionengine_la-JIT.lo -MD -MP -MF $(DEPDIR)/libllvmexecutionengine_la-JIT.Tpo -c -o libllvmexecutionengine_la-JIT.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JIT.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JIT.cpp
3464
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmexecutionengine_la-JIT.Tpo $(DEPDIR)/libllvmexecutionengine_la-JIT.Plo
2510
+libllvmarmcodegen_la-ARMMCAsmInfo.lo: llvm/lib/Target/ARM/ARMMCAsmInfo.cpp
2511
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMMCAsmInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMMCAsmInfo.Tpo -c -o libllvmarmcodegen_la-ARMMCAsmInfo.lo `test -f 'llvm/lib/Target/ARM/ARMMCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMMCAsmInfo.cpp
2512
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMMCAsmInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMMCAsmInfo.Plo
3465 2513
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3466
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JIT.cpp' object='libllvmexecutionengine_la-JIT.lo' libtool=yes @AMDEPBACKSLASH@
2514
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMMCAsmInfo.cpp' object='libllvmarmcodegen_la-ARMMCAsmInfo.lo' libtool=yes @AMDEPBACKSLASH@
3467 2515
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3468
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmexecutionengine_la-JIT.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JIT.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JIT.cpp
2516
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMMCAsmInfo.lo `test -f 'llvm/lib/Target/ARM/ARMMCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMMCAsmInfo.cpp
3469 2517
 
3470
-libllvmexecutionengine_la-JITDebugRegisterer.lo: llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp
3471
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmexecutionengine_la-JITDebugRegisterer.lo -MD -MP -MF $(DEPDIR)/libllvmexecutionengine_la-JITDebugRegisterer.Tpo -c -o libllvmexecutionengine_la-JITDebugRegisterer.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp
3472
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmexecutionengine_la-JITDebugRegisterer.Tpo $(DEPDIR)/libllvmexecutionengine_la-JITDebugRegisterer.Plo
2518
+libllvmarmcodegen_la-ARMRegisterInfo.lo: llvm/lib/Target/ARM/ARMRegisterInfo.cpp
2519
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMRegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMRegisterInfo.Tpo -c -o libllvmarmcodegen_la-ARMRegisterInfo.lo `test -f 'llvm/lib/Target/ARM/ARMRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMRegisterInfo.cpp
2520
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMRegisterInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMRegisterInfo.Plo
3473 2521
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3474
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp' object='libllvmexecutionengine_la-JITDebugRegisterer.lo' libtool=yes @AMDEPBACKSLASH@
2522
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMRegisterInfo.cpp' object='libllvmarmcodegen_la-ARMRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3475 2523
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3476
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmexecutionengine_la-JITDebugRegisterer.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp
2524
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMRegisterInfo.lo `test -f 'llvm/lib/Target/ARM/ARMRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMRegisterInfo.cpp
3477 2525
 
3478
-libllvmexecutionengine_la-JITDwarfEmitter.lo: llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp
3479
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmexecutionengine_la-JITDwarfEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmexecutionengine_la-JITDwarfEmitter.Tpo -c -o libllvmexecutionengine_la-JITDwarfEmitter.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp
3480
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmexecutionengine_la-JITDwarfEmitter.Tpo $(DEPDIR)/libllvmexecutionengine_la-JITDwarfEmitter.Plo
2526
+libllvmarmcodegen_la-ARMSubtarget.lo: llvm/lib/Target/ARM/ARMSubtarget.cpp
2527
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMSubtarget.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMSubtarget.Tpo -c -o libllvmarmcodegen_la-ARMSubtarget.lo `test -f 'llvm/lib/Target/ARM/ARMSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMSubtarget.cpp
2528
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMSubtarget.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMSubtarget.Plo
3481 2529
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3482
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp' object='libllvmexecutionengine_la-JITDwarfEmitter.lo' libtool=yes @AMDEPBACKSLASH@
2530
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMSubtarget.cpp' object='libllvmarmcodegen_la-ARMSubtarget.lo' libtool=yes @AMDEPBACKSLASH@
3483 2531
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3484
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmexecutionengine_la-JITDwarfEmitter.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp
2532
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMSubtarget.lo `test -f 'llvm/lib/Target/ARM/ARMSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMSubtarget.cpp
3485 2533
 
3486
-libllvmexecutionengine_la-JITEmitter.lo: llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
3487
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmexecutionengine_la-JITEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmexecutionengine_la-JITEmitter.Tpo -c -o libllvmexecutionengine_la-JITEmitter.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
3488
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmexecutionengine_la-JITEmitter.Tpo $(DEPDIR)/libllvmexecutionengine_la-JITEmitter.Plo
2534
+libllvmarmcodegen_la-ARMTargetMachine.lo: llvm/lib/Target/ARM/ARMTargetMachine.cpp
2535
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMTargetMachine.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMTargetMachine.Tpo -c -o libllvmarmcodegen_la-ARMTargetMachine.lo `test -f 'llvm/lib/Target/ARM/ARMTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMTargetMachine.cpp
2536
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMTargetMachine.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMTargetMachine.Plo
3489 2537
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3490
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp' object='libllvmexecutionengine_la-JITEmitter.lo' libtool=yes @AMDEPBACKSLASH@
2538
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMTargetMachine.cpp' object='libllvmarmcodegen_la-ARMTargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
3491 2539
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3492
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmexecutionengine_la-JITEmitter.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
2540
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMTargetMachine.lo `test -f 'llvm/lib/Target/ARM/ARMTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMTargetMachine.cpp
3493 2541
 
3494
-libllvmexecutionengine_la-JITMemoryManager.lo: llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
3495
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmexecutionengine_la-JITMemoryManager.lo -MD -MP -MF $(DEPDIR)/libllvmexecutionengine_la-JITMemoryManager.Tpo -c -o libllvmexecutionengine_la-JITMemoryManager.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
3496
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmexecutionengine_la-JITMemoryManager.Tpo $(DEPDIR)/libllvmexecutionengine_la-JITMemoryManager.Plo
2542
+libllvmarmcodegen_la-NEONMoveFix.lo: llvm/lib/Target/ARM/NEONMoveFix.cpp
2543
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-NEONMoveFix.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-NEONMoveFix.Tpo -c -o libllvmarmcodegen_la-NEONMoveFix.lo `test -f 'llvm/lib/Target/ARM/NEONMoveFix.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/NEONMoveFix.cpp
2544
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-NEONMoveFix.Tpo $(DEPDIR)/libllvmarmcodegen_la-NEONMoveFix.Plo
3497 2545
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3498
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp' object='libllvmexecutionengine_la-JITMemoryManager.lo' libtool=yes @AMDEPBACKSLASH@
2546
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/NEONMoveFix.cpp' object='libllvmarmcodegen_la-NEONMoveFix.lo' libtool=yes @AMDEPBACKSLASH@
3499 2547
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3500
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmexecutionengine_la-JITMemoryManager.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
2548
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-NEONMoveFix.lo `test -f 'llvm/lib/Target/ARM/NEONMoveFix.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/NEONMoveFix.cpp
3501 2549
 
3502
-libllvmexecutionengine_la-TargetSelect.lo: llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
3503
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmexecutionengine_la-TargetSelect.lo -MD -MP -MF $(DEPDIR)/libllvmexecutionengine_la-TargetSelect.Tpo -c -o libllvmexecutionengine_la-TargetSelect.lo `test -f 'llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
3504
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmexecutionengine_la-TargetSelect.Tpo $(DEPDIR)/libllvmexecutionengine_la-TargetSelect.Plo
2550
+libllvmarmcodegen_la-NEONPreAllocPass.lo: llvm/lib/Target/ARM/NEONPreAllocPass.cpp
2551
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-NEONPreAllocPass.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-NEONPreAllocPass.Tpo -c -o libllvmarmcodegen_la-NEONPreAllocPass.lo `test -f 'llvm/lib/Target/ARM/NEONPreAllocPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/NEONPreAllocPass.cpp
2552
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-NEONPreAllocPass.Tpo $(DEPDIR)/libllvmarmcodegen_la-NEONPreAllocPass.Plo
3505 2553
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3506
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp' object='libllvmexecutionengine_la-TargetSelect.lo' libtool=yes @AMDEPBACKSLASH@
2554
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/NEONPreAllocPass.cpp' object='libllvmarmcodegen_la-NEONPreAllocPass.lo' libtool=yes @AMDEPBACKSLASH@
3507 2555
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3508
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmexecutionengine_la_CPPFLAGS) $(CPPFLAGS) $(libllvmexecutionengine_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmexecutionengine_la-TargetSelect.lo `test -f 'llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
2556
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-NEONPreAllocPass.lo `test -f 'llvm/lib/Target/ARM/NEONPreAllocPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/NEONPreAllocPass.cpp
3509 2557
 
3510
-libllvminterpreter_la-Execution.lo: llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
3511
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvminterpreter_la_CPPFLAGS) $(CPPFLAGS) $(libllvminterpreter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvminterpreter_la-Execution.lo -MD -MP -MF $(DEPDIR)/libllvminterpreter_la-Execution.Tpo -c -o libllvminterpreter_la-Execution.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
3512
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvminterpreter_la-Execution.Tpo $(DEPDIR)/libllvminterpreter_la-Execution.Plo
2558
+libllvmarmcodegen_la-ARMTargetInfo.lo: llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
2559
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-ARMTargetInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-ARMTargetInfo.Tpo -c -o libllvmarmcodegen_la-ARMTargetInfo.lo `test -f 'llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
2560
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-ARMTargetInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-ARMTargetInfo.Plo
3513 2561
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3514
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/Interpreter/Execution.cpp' object='libllvminterpreter_la-Execution.lo' libtool=yes @AMDEPBACKSLASH@
2562
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp' object='libllvmarmcodegen_la-ARMTargetInfo.lo' libtool=yes @AMDEPBACKSLASH@
3515 2563
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3516
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvminterpreter_la_CPPFLAGS) $(CPPFLAGS) $(libllvminterpreter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvminterpreter_la-Execution.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
2564
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-ARMTargetInfo.lo `test -f 'llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
3517 2565
 
3518
-libllvminterpreter_la-ExternalFunctions.lo: llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
3519
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvminterpreter_la_CPPFLAGS) $(CPPFLAGS) $(libllvminterpreter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvminterpreter_la-ExternalFunctions.lo -MD -MP -MF $(DEPDIR)/libllvminterpreter_la-ExternalFunctions.Tpo -c -o libllvminterpreter_la-ExternalFunctions.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
3520
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvminterpreter_la-ExternalFunctions.Tpo $(DEPDIR)/libllvminterpreter_la-ExternalFunctions.Plo
2566
+libllvmarmcodegen_la-Thumb1InstrInfo.lo: llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
2567
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-Thumb1InstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-Thumb1InstrInfo.Tpo -c -o libllvmarmcodegen_la-Thumb1InstrInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb1InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
2568
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-Thumb1InstrInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-Thumb1InstrInfo.Plo
3521 2569
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3522
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp' object='libllvminterpreter_la-ExternalFunctions.lo' libtool=yes @AMDEPBACKSLASH@
2570
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb1InstrInfo.cpp' object='libllvmarmcodegen_la-Thumb1InstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3523 2571
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3524
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvminterpreter_la_CPPFLAGS) $(CPPFLAGS) $(libllvminterpreter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvminterpreter_la-ExternalFunctions.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
2572
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-Thumb1InstrInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb1InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
3525 2573
 
3526
-libllvminterpreter_la-Interpreter.lo: llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
3527
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvminterpreter_la_CPPFLAGS) $(CPPFLAGS) $(libllvminterpreter_la_CXXFLAGS) $(CXXFLAGS) -MT libllvminterpreter_la-Interpreter.lo -MD -MP -MF $(DEPDIR)/libllvminterpreter_la-Interpreter.Tpo -c -o libllvminterpreter_la-Interpreter.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
3528
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvminterpreter_la-Interpreter.Tpo $(DEPDIR)/libllvminterpreter_la-Interpreter.Plo
2574
+libllvmarmcodegen_la-Thumb1RegisterInfo.lo: llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp
2575
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-Thumb1RegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-Thumb1RegisterInfo.Tpo -c -o libllvmarmcodegen_la-Thumb1RegisterInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp
2576
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-Thumb1RegisterInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-Thumb1RegisterInfo.Plo
3529 2577
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3530
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp' object='libllvminterpreter_la-Interpreter.lo' libtool=yes @AMDEPBACKSLASH@
2578
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp' object='libllvmarmcodegen_la-Thumb1RegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3531 2579
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3532
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvminterpreter_la_CPPFLAGS) $(CPPFLAGS) $(libllvminterpreter_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvminterpreter_la-Interpreter.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
2580
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-Thumb1RegisterInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp
3533 2581
 
3534
-libllvmipa_la-AliasAnalysis.lo: llvm/lib/Analysis/AliasAnalysis.cpp
3535
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-AliasAnalysis.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-AliasAnalysis.Tpo -c -o libllvmipa_la-AliasAnalysis.lo `test -f 'llvm/lib/Analysis/AliasAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/AliasAnalysis.cpp
3536
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-AliasAnalysis.Tpo $(DEPDIR)/libllvmipa_la-AliasAnalysis.Plo
2582
+libllvmarmcodegen_la-Thumb2ITBlockPass.lo: llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
2583
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-Thumb2ITBlockPass.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-Thumb2ITBlockPass.Tpo -c -o libllvmarmcodegen_la-Thumb2ITBlockPass.lo `test -f 'llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
2584
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-Thumb2ITBlockPass.Tpo $(DEPDIR)/libllvmarmcodegen_la-Thumb2ITBlockPass.Plo
3537 2585
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3538
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/AliasAnalysis.cpp' object='libllvmipa_la-AliasAnalysis.lo' libtool=yes @AMDEPBACKSLASH@
2586
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp' object='libllvmarmcodegen_la-Thumb2ITBlockPass.lo' libtool=yes @AMDEPBACKSLASH@
3539 2587
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3540
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-AliasAnalysis.lo `test -f 'llvm/lib/Analysis/AliasAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/AliasAnalysis.cpp
2588
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-Thumb2ITBlockPass.lo `test -f 'llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
3541 2589
 
3542
-libllvmipa_la-AliasSetTracker.lo: llvm/lib/Analysis/AliasSetTracker.cpp
3543
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-AliasSetTracker.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-AliasSetTracker.Tpo -c -o libllvmipa_la-AliasSetTracker.lo `test -f 'llvm/lib/Analysis/AliasSetTracker.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/AliasSetTracker.cpp
3544
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-AliasSetTracker.Tpo $(DEPDIR)/libllvmipa_la-AliasSetTracker.Plo
2590
+libllvmarmcodegen_la-Thumb2InstrInfo.lo: llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
2591
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-Thumb2InstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-Thumb2InstrInfo.Tpo -c -o libllvmarmcodegen_la-Thumb2InstrInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb2InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
2592
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-Thumb2InstrInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-Thumb2InstrInfo.Plo
3545 2593
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3546
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/AliasSetTracker.cpp' object='libllvmipa_la-AliasSetTracker.lo' libtool=yes @AMDEPBACKSLASH@
2594
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb2InstrInfo.cpp' object='libllvmarmcodegen_la-Thumb2InstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3547 2595
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3548
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-AliasSetTracker.lo `test -f 'llvm/lib/Analysis/AliasSetTracker.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/AliasSetTracker.cpp
2596
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-Thumb2InstrInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb2InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
3549 2597
 
3550
-libllvmipa_la-BasicAliasAnalysis.lo: llvm/lib/Analysis/BasicAliasAnalysis.cpp
3551
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-BasicAliasAnalysis.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-BasicAliasAnalysis.Tpo -c -o libllvmipa_la-BasicAliasAnalysis.lo `test -f 'llvm/lib/Analysis/BasicAliasAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/BasicAliasAnalysis.cpp
3552
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-BasicAliasAnalysis.Tpo $(DEPDIR)/libllvmipa_la-BasicAliasAnalysis.Plo
2598
+libllvmarmcodegen_la-Thumb2RegisterInfo.lo: llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp
2599
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-Thumb2RegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-Thumb2RegisterInfo.Tpo -c -o libllvmarmcodegen_la-Thumb2RegisterInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp
2600
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-Thumb2RegisterInfo.Tpo $(DEPDIR)/libllvmarmcodegen_la-Thumb2RegisterInfo.Plo
3553 2601
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3554
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/BasicAliasAnalysis.cpp' object='libllvmipa_la-BasicAliasAnalysis.lo' libtool=yes @AMDEPBACKSLASH@
2602
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp' object='libllvmarmcodegen_la-Thumb2RegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3555 2603
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3556
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-BasicAliasAnalysis.lo `test -f 'llvm/lib/Analysis/BasicAliasAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/BasicAliasAnalysis.cpp
2604
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-Thumb2RegisterInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp
3557 2605
 
3558
-libllvmipa_la-CaptureTracking.lo: llvm/lib/Analysis/CaptureTracking.cpp
3559
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-CaptureTracking.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-CaptureTracking.Tpo -c -o libllvmipa_la-CaptureTracking.lo `test -f 'llvm/lib/Analysis/CaptureTracking.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/CaptureTracking.cpp
3560
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-CaptureTracking.Tpo $(DEPDIR)/libllvmipa_la-CaptureTracking.Plo
2606
+libllvmarmcodegen_la-Thumb2SizeReduction.lo: llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
2607
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmarmcodegen_la-Thumb2SizeReduction.lo -MD -MP -MF $(DEPDIR)/libllvmarmcodegen_la-Thumb2SizeReduction.Tpo -c -o libllvmarmcodegen_la-Thumb2SizeReduction.lo `test -f 'llvm/lib/Target/ARM/Thumb2SizeReduction.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
2608
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmarmcodegen_la-Thumb2SizeReduction.Tpo $(DEPDIR)/libllvmarmcodegen_la-Thumb2SizeReduction.Plo
3561 2609
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3562
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/CaptureTracking.cpp' object='libllvmipa_la-CaptureTracking.lo' libtool=yes @AMDEPBACKSLASH@
2610
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb2SizeReduction.cpp' object='libllvmarmcodegen_la-Thumb2SizeReduction.lo' libtool=yes @AMDEPBACKSLASH@
3563 2611
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3564
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-CaptureTracking.lo `test -f 'llvm/lib/Analysis/CaptureTracking.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/CaptureTracking.cpp
2612
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmarmcodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmarmcodegen_la-Thumb2SizeReduction.lo `test -f 'llvm/lib/Target/ARM/Thumb2SizeReduction.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
3565 2613
 
3566
-libllvmipa_la-ConstantFolding.lo: llvm/lib/Analysis/ConstantFolding.cpp
3567
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-ConstantFolding.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-ConstantFolding.Tpo -c -o libllvmipa_la-ConstantFolding.lo `test -f 'llvm/lib/Analysis/ConstantFolding.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ConstantFolding.cpp
3568
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-ConstantFolding.Tpo $(DEPDIR)/libllvmipa_la-ConstantFolding.Plo
2614
+LLLexer.lo: llvm/lib/AsmParser/LLLexer.cpp
2615
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT LLLexer.lo -MD -MP -MF $(DEPDIR)/LLLexer.Tpo -c -o LLLexer.lo `test -f 'llvm/lib/AsmParser/LLLexer.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/LLLexer.cpp
2616
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/LLLexer.Tpo $(DEPDIR)/LLLexer.Plo
3569 2617
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3570
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/ConstantFolding.cpp' object='libllvmipa_la-ConstantFolding.lo' libtool=yes @AMDEPBACKSLASH@
2618
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/AsmParser/LLLexer.cpp' object='LLLexer.lo' libtool=yes @AMDEPBACKSLASH@
3571 2619
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3572
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-ConstantFolding.lo `test -f 'llvm/lib/Analysis/ConstantFolding.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ConstantFolding.cpp
2620
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o LLLexer.lo `test -f 'llvm/lib/AsmParser/LLLexer.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/LLLexer.cpp
3573 2621
 
3574
-libllvmipa_la-DebugInfo.lo: llvm/lib/Analysis/DebugInfo.cpp
3575
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-DebugInfo.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-DebugInfo.Tpo -c -o libllvmipa_la-DebugInfo.lo `test -f 'llvm/lib/Analysis/DebugInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/DebugInfo.cpp
3576
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-DebugInfo.Tpo $(DEPDIR)/libllvmipa_la-DebugInfo.Plo
2622
+LLParser.lo: llvm/lib/AsmParser/LLParser.cpp
2623
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT LLParser.lo -MD -MP -MF $(DEPDIR)/LLParser.Tpo -c -o LLParser.lo `test -f 'llvm/lib/AsmParser/LLParser.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/LLParser.cpp
2624
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/LLParser.Tpo $(DEPDIR)/LLParser.Plo
3577 2625
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3578
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/DebugInfo.cpp' object='libllvmipa_la-DebugInfo.lo' libtool=yes @AMDEPBACKSLASH@
2626
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/AsmParser/LLParser.cpp' object='LLParser.lo' libtool=yes @AMDEPBACKSLASH@
3579 2627
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3580
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-DebugInfo.lo `test -f 'llvm/lib/Analysis/DebugInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/DebugInfo.cpp
2628
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o LLParser.lo `test -f 'llvm/lib/AsmParser/LLParser.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/LLParser.cpp
3581 2629
 
3582
-libllvmipa_la-IVUsers.lo: llvm/lib/Analysis/IVUsers.cpp
3583
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-IVUsers.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-IVUsers.Tpo -c -o libllvmipa_la-IVUsers.lo `test -f 'llvm/lib/Analysis/IVUsers.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/IVUsers.cpp
3584
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-IVUsers.Tpo $(DEPDIR)/libllvmipa_la-IVUsers.Plo
2630
+Parser.lo: llvm/lib/AsmParser/Parser.cpp
2631
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Parser.lo -MD -MP -MF $(DEPDIR)/Parser.Tpo -c -o Parser.lo `test -f 'llvm/lib/AsmParser/Parser.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/Parser.cpp
2632
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Parser.Tpo $(DEPDIR)/Parser.Plo
3585 2633
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3586
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/IVUsers.cpp' object='libllvmipa_la-IVUsers.lo' libtool=yes @AMDEPBACKSLASH@
2634
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/AsmParser/Parser.cpp' object='Parser.lo' libtool=yes @AMDEPBACKSLASH@
3587 2635
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3588
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-IVUsers.lo `test -f 'llvm/lib/Analysis/IVUsers.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/IVUsers.cpp
2636
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Parser.lo `test -f 'llvm/lib/AsmParser/Parser.cpp' || echo '$(srcdir)/'`llvm/lib/AsmParser/Parser.cpp
3589 2637
 
3590
-libllvmipa_la-InstructionSimplify.lo: llvm/lib/Analysis/InstructionSimplify.cpp
3591
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-InstructionSimplify.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-InstructionSimplify.Tpo -c -o libllvmipa_la-InstructionSimplify.lo `test -f 'llvm/lib/Analysis/InstructionSimplify.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/InstructionSimplify.cpp
3592
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-InstructionSimplify.Tpo $(DEPDIR)/libllvmipa_la-InstructionSimplify.Plo
3593
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3594
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/InstructionSimplify.cpp' object='libllvmipa_la-InstructionSimplify.lo' libtool=yes @AMDEPBACKSLASH@
3595
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3596
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-InstructionSimplify.lo `test -f 'llvm/lib/Analysis/InstructionSimplify.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/InstructionSimplify.cpp
3597
-
3598
-libllvmipa_la-LiveValues.lo: llvm/lib/Analysis/LiveValues.cpp
3599
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-LiveValues.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-LiveValues.Tpo -c -o libllvmipa_la-LiveValues.lo `test -f 'llvm/lib/Analysis/LiveValues.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/LiveValues.cpp
3600
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-LiveValues.Tpo $(DEPDIR)/libllvmipa_la-LiveValues.Plo
3601
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3602
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/LiveValues.cpp' object='libllvmipa_la-LiveValues.lo' libtool=yes @AMDEPBACKSLASH@
3603
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3604
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-LiveValues.lo `test -f 'llvm/lib/Analysis/LiveValues.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/LiveValues.cpp
3605
-
3606
-libllvmipa_la-LoopDependenceAnalysis.lo: llvm/lib/Analysis/LoopDependenceAnalysis.cpp
3607
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-LoopDependenceAnalysis.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-LoopDependenceAnalysis.Tpo -c -o libllvmipa_la-LoopDependenceAnalysis.lo `test -f 'llvm/lib/Analysis/LoopDependenceAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/LoopDependenceAnalysis.cpp
3608
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-LoopDependenceAnalysis.Tpo $(DEPDIR)/libllvmipa_la-LoopDependenceAnalysis.Plo
3609
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3610
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/LoopDependenceAnalysis.cpp' object='libllvmipa_la-LoopDependenceAnalysis.lo' libtool=yes @AMDEPBACKSLASH@
3611
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3612
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-LoopDependenceAnalysis.lo `test -f 'llvm/lib/Analysis/LoopDependenceAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/LoopDependenceAnalysis.cpp
3613
-
3614
-libllvmipa_la-LoopInfo.lo: llvm/lib/Analysis/LoopInfo.cpp
3615
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-LoopInfo.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-LoopInfo.Tpo -c -o libllvmipa_la-LoopInfo.lo `test -f 'llvm/lib/Analysis/LoopInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/LoopInfo.cpp
3616
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-LoopInfo.Tpo $(DEPDIR)/libllvmipa_la-LoopInfo.Plo
3617
-@am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3618
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/LoopInfo.cpp' object='libllvmipa_la-LoopInfo.lo' libtool=yes @AMDEPBACKSLASH@
3619
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3620
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-LoopInfo.lo `test -f 'llvm/lib/Analysis/LoopInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/LoopInfo.cpp
3621
-
3622
-libllvmipa_la-LoopPass.lo: llvm/lib/Analysis/LoopPass.cpp
3623
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-LoopPass.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-LoopPass.Tpo -c -o libllvmipa_la-LoopPass.lo `test -f 'llvm/lib/Analysis/LoopPass.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/LoopPass.cpp
3624
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-LoopPass.Tpo $(DEPDIR)/libllvmipa_la-LoopPass.Plo
2638
+libllvmasmprinter_la-OcamlGCPrinter.lo: llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
2639
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-OcamlGCPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-OcamlGCPrinter.Tpo -c -o libllvmasmprinter_la-OcamlGCPrinter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
2640
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-OcamlGCPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-OcamlGCPrinter.Plo
3625 2641
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3626
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/LoopPass.cpp' object='libllvmipa_la-LoopPass.lo' libtool=yes @AMDEPBACKSLASH@
2642
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp' object='libllvmasmprinter_la-OcamlGCPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3627 2643
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3628
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-LoopPass.lo `test -f 'llvm/lib/Analysis/LoopPass.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/LoopPass.cpp
2644
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-OcamlGCPrinter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
3629 2645
 
3630
-libllvmipa_la-MemoryBuiltins.lo: llvm/lib/Analysis/MemoryBuiltins.cpp
3631
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-MemoryBuiltins.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-MemoryBuiltins.Tpo -c -o libllvmipa_la-MemoryBuiltins.lo `test -f 'llvm/lib/Analysis/MemoryBuiltins.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/MemoryBuiltins.cpp
3632
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-MemoryBuiltins.Tpo $(DEPDIR)/libllvmipa_la-MemoryBuiltins.Plo
2646
+libllvmasmprinter_la-ELFCodeEmitter.lo: llvm/lib/CodeGen/ELFCodeEmitter.cpp
2647
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ELFCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ELFCodeEmitter.Tpo -c -o libllvmasmprinter_la-ELFCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ELFCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFCodeEmitter.cpp
2648
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ELFCodeEmitter.Tpo $(DEPDIR)/libllvmasmprinter_la-ELFCodeEmitter.Plo
3633 2649
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3634
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/MemoryBuiltins.cpp' object='libllvmipa_la-MemoryBuiltins.lo' libtool=yes @AMDEPBACKSLASH@
2650
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ELFCodeEmitter.cpp' object='libllvmasmprinter_la-ELFCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
3635 2651
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3636
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-MemoryBuiltins.lo `test -f 'llvm/lib/Analysis/MemoryBuiltins.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/MemoryBuiltins.cpp
2652
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ELFCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ELFCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFCodeEmitter.cpp
3637 2653
 
3638
-libllvmipa_la-MemoryDependenceAnalysis.lo: llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
3639
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-MemoryDependenceAnalysis.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-MemoryDependenceAnalysis.Tpo -c -o libllvmipa_la-MemoryDependenceAnalysis.lo `test -f 'llvm/lib/Analysis/MemoryDependenceAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
3640
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-MemoryDependenceAnalysis.Tpo $(DEPDIR)/libllvmipa_la-MemoryDependenceAnalysis.Plo
2654
+libllvmasmprinter_la-ELFWriter.lo: llvm/lib/CodeGen/ELFWriter.cpp
2655
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ELFWriter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ELFWriter.Tpo -c -o libllvmasmprinter_la-ELFWriter.lo `test -f 'llvm/lib/CodeGen/ELFWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFWriter.cpp
2656
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ELFWriter.Tpo $(DEPDIR)/libllvmasmprinter_la-ELFWriter.Plo
3641 2657
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3642
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/MemoryDependenceAnalysis.cpp' object='libllvmipa_la-MemoryDependenceAnalysis.lo' libtool=yes @AMDEPBACKSLASH@
2658
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ELFWriter.cpp' object='libllvmasmprinter_la-ELFWriter.lo' libtool=yes @AMDEPBACKSLASH@
3643 2659
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3644
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-MemoryDependenceAnalysis.lo `test -f 'llvm/lib/Analysis/MemoryDependenceAnalysis.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
2660
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ELFWriter.lo `test -f 'llvm/lib/CodeGen/ELFWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFWriter.cpp
3645 2661
 
3646
-libllvmipa_la-PHITransAddr.lo: llvm/lib/Analysis/PHITransAddr.cpp
3647
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-PHITransAddr.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-PHITransAddr.Tpo -c -o libllvmipa_la-PHITransAddr.lo `test -f 'llvm/lib/Analysis/PHITransAddr.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/PHITransAddr.cpp
3648
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-PHITransAddr.Tpo $(DEPDIR)/libllvmipa_la-PHITransAddr.Plo
2662
+libllvmasmprinter_la-MachOCodeEmitter.lo: llvm/lib/CodeGen/MachOCodeEmitter.cpp
2663
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-MachOCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-MachOCodeEmitter.Tpo -c -o libllvmasmprinter_la-MachOCodeEmitter.lo `test -f 'llvm/lib/CodeGen/MachOCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachOCodeEmitter.cpp
2664
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-MachOCodeEmitter.Tpo $(DEPDIR)/libllvmasmprinter_la-MachOCodeEmitter.Plo
3649 2665
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3650
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/PHITransAddr.cpp' object='libllvmipa_la-PHITransAddr.lo' libtool=yes @AMDEPBACKSLASH@
2666
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachOCodeEmitter.cpp' object='libllvmasmprinter_la-MachOCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
3651 2667
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3652
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-PHITransAddr.lo `test -f 'llvm/lib/Analysis/PHITransAddr.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/PHITransAddr.cpp
2668
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-MachOCodeEmitter.lo `test -f 'llvm/lib/CodeGen/MachOCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachOCodeEmitter.cpp
3653 2669
 
3654
-libllvmipa_la-ProfileInfo.lo: llvm/lib/Analysis/ProfileInfo.cpp
3655
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-ProfileInfo.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-ProfileInfo.Tpo -c -o libllvmipa_la-ProfileInfo.lo `test -f 'llvm/lib/Analysis/ProfileInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ProfileInfo.cpp
3656
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-ProfileInfo.Tpo $(DEPDIR)/libllvmipa_la-ProfileInfo.Plo
2670
+libllvmasmprinter_la-MachOWriter.lo: llvm/lib/CodeGen/MachOWriter.cpp
2671
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-MachOWriter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-MachOWriter.Tpo -c -o libllvmasmprinter_la-MachOWriter.lo `test -f 'llvm/lib/CodeGen/MachOWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachOWriter.cpp
2672
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-MachOWriter.Tpo $(DEPDIR)/libllvmasmprinter_la-MachOWriter.Plo
3657 2673
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3658
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/ProfileInfo.cpp' object='libllvmipa_la-ProfileInfo.lo' libtool=yes @AMDEPBACKSLASH@
2674
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachOWriter.cpp' object='libllvmasmprinter_la-MachOWriter.lo' libtool=yes @AMDEPBACKSLASH@
3659 2675
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3660
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-ProfileInfo.lo `test -f 'llvm/lib/Analysis/ProfileInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ProfileInfo.cpp
2676
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-MachOWriter.lo `test -f 'llvm/lib/CodeGen/MachOWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachOWriter.cpp
3661 2677
 
3662
-libllvmipa_la-ScalarEvolution.lo: llvm/lib/Analysis/ScalarEvolution.cpp
3663
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-ScalarEvolution.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-ScalarEvolution.Tpo -c -o libllvmipa_la-ScalarEvolution.lo `test -f 'llvm/lib/Analysis/ScalarEvolution.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ScalarEvolution.cpp
3664
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-ScalarEvolution.Tpo $(DEPDIR)/libllvmipa_la-ScalarEvolution.Plo
2678
+libllvmasmprinter_la-X86AsmPrinter.lo: llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp
2679
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86AsmPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86AsmPrinter.Tpo -c -o libllvmasmprinter_la-X86AsmPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp
2680
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86AsmPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-X86AsmPrinter.Plo
3665 2681
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3666
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/ScalarEvolution.cpp' object='libllvmipa_la-ScalarEvolution.lo' libtool=yes @AMDEPBACKSLASH@
2682
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp' object='libllvmasmprinter_la-X86AsmPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3667 2683
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3668
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-ScalarEvolution.lo `test -f 'llvm/lib/Analysis/ScalarEvolution.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ScalarEvolution.cpp
2684
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86AsmPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86AsmPrinter.cpp
3669 2685
 
3670
-libllvmipa_la-ScalarEvolutionExpander.lo: llvm/lib/Analysis/ScalarEvolutionExpander.cpp
3671
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-ScalarEvolutionExpander.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-ScalarEvolutionExpander.Tpo -c -o libllvmipa_la-ScalarEvolutionExpander.lo `test -f 'llvm/lib/Analysis/ScalarEvolutionExpander.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ScalarEvolutionExpander.cpp
3672
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-ScalarEvolutionExpander.Tpo $(DEPDIR)/libllvmipa_la-ScalarEvolutionExpander.Plo
2686
+libllvmasmprinter_la-X86ATTInstPrinter.lo: llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
2687
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86ATTInstPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86ATTInstPrinter.Tpo -c -o libllvmasmprinter_la-X86ATTInstPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
2688
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86ATTInstPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-X86ATTInstPrinter.Plo
3673 2689
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3674
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/ScalarEvolutionExpander.cpp' object='libllvmipa_la-ScalarEvolutionExpander.lo' libtool=yes @AMDEPBACKSLASH@
2690
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp' object='libllvmasmprinter_la-X86ATTInstPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3675 2691
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3676
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-ScalarEvolutionExpander.lo `test -f 'llvm/lib/Analysis/ScalarEvolutionExpander.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ScalarEvolutionExpander.cpp
2692
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86ATTInstPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86ATTInstPrinter.cpp
3677 2693
 
3678
-libllvmipa_la-ValueTracking.lo: llvm/lib/Analysis/ValueTracking.cpp
3679
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-ValueTracking.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-ValueTracking.Tpo -c -o libllvmipa_la-ValueTracking.lo `test -f 'llvm/lib/Analysis/ValueTracking.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ValueTracking.cpp
3680
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-ValueTracking.Tpo $(DEPDIR)/libllvmipa_la-ValueTracking.Plo
2694
+libllvmasmprinter_la-X86IntelInstPrinter.lo: llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp
2695
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86IntelInstPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86IntelInstPrinter.Tpo -c -o libllvmasmprinter_la-X86IntelInstPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp
2696
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86IntelInstPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-X86IntelInstPrinter.Plo
3681 2697
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3682
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/ValueTracking.cpp' object='libllvmipa_la-ValueTracking.lo' libtool=yes @AMDEPBACKSLASH@
2698
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp' object='libllvmasmprinter_la-X86IntelInstPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3683 2699
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3684
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-ValueTracking.lo `test -f 'llvm/lib/Analysis/ValueTracking.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/ValueTracking.cpp
2700
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86IntelInstPrinter.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86IntelInstPrinter.cpp
3685 2701
 
3686
-libllvmipa_la-CallGraph.lo: llvm/lib/Analysis/IPA/CallGraph.cpp
3687
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmipa_la-CallGraph.lo -MD -MP -MF $(DEPDIR)/libllvmipa_la-CallGraph.Tpo -c -o libllvmipa_la-CallGraph.lo `test -f 'llvm/lib/Analysis/IPA/CallGraph.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/IPA/CallGraph.cpp
3688
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmipa_la-CallGraph.Tpo $(DEPDIR)/libllvmipa_la-CallGraph.Plo
2702
+libllvmasmprinter_la-X86MCInstLower.lo: llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
2703
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86MCInstLower.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86MCInstLower.Tpo -c -o libllvmasmprinter_la-X86MCInstLower.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
2704
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86MCInstLower.Tpo $(DEPDIR)/libllvmasmprinter_la-X86MCInstLower.Plo
3689 2705
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3690
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/IPA/CallGraph.cpp' object='libllvmipa_la-CallGraph.lo' libtool=yes @AMDEPBACKSLASH@
2706
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp' object='libllvmasmprinter_la-X86MCInstLower.lo' libtool=yes @AMDEPBACKSLASH@
3691 2707
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3692
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmipa_la_CPPFLAGS) $(CPPFLAGS) $(libllvmipa_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmipa_la-CallGraph.lo `test -f 'llvm/lib/Analysis/IPA/CallGraph.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/IPA/CallGraph.cpp
2708
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86MCInstLower.lo `test -f 'llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
3693 2709
 
3694
-libllvmmc_la-MCAsmInfo.lo: llvm/lib/MC/MCAsmInfo.cpp
3695
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCAsmInfo.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCAsmInfo.Tpo -c -o libllvmmc_la-MCAsmInfo.lo `test -f 'llvm/lib/MC/MCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfo.cpp
3696
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCAsmInfo.Tpo $(DEPDIR)/libllvmmc_la-MCAsmInfo.Plo
2710
+libllvmasmprinter_la-X86COFFMachineModuleInfo.lo: llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
2711
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-X86COFFMachineModuleInfo.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-X86COFFMachineModuleInfo.Tpo -c -o libllvmasmprinter_la-X86COFFMachineModuleInfo.lo `test -f 'llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
2712
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-X86COFFMachineModuleInfo.Tpo $(DEPDIR)/libllvmasmprinter_la-X86COFFMachineModuleInfo.Plo
3697 2713
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3698
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmInfo.cpp' object='libllvmmc_la-MCAsmInfo.lo' libtool=yes @AMDEPBACKSLASH@
2714
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' object='libllvmasmprinter_la-X86COFFMachineModuleInfo.lo' libtool=yes @AMDEPBACKSLASH@
3699 2715
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3700
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCAsmInfo.lo `test -f 'llvm/lib/MC/MCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfo.cpp
2716
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-X86COFFMachineModuleInfo.lo `test -f 'llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
3701 2717
 
3702
-libllvmmc_la-MCAsmInfoCOFF.lo: llvm/lib/MC/MCAsmInfoCOFF.cpp
3703
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCAsmInfoCOFF.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCAsmInfoCOFF.Tpo -c -o libllvmmc_la-MCAsmInfoCOFF.lo `test -f 'llvm/lib/MC/MCAsmInfoCOFF.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfoCOFF.cpp
3704
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCAsmInfoCOFF.Tpo $(DEPDIR)/libllvmmc_la-MCAsmInfoCOFF.Plo
2718
+libllvmasmprinter_la-PPCAsmPrinter.lo: llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
2719
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-PPCAsmPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-PPCAsmPrinter.Tpo -c -o libllvmasmprinter_la-PPCAsmPrinter.lo `test -f 'llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
2720
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-PPCAsmPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-PPCAsmPrinter.Plo
3705 2721
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3706
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmInfoCOFF.cpp' object='libllvmmc_la-MCAsmInfoCOFF.lo' libtool=yes @AMDEPBACKSLASH@
2722
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp' object='libllvmasmprinter_la-PPCAsmPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3707 2723
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3708
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCAsmInfoCOFF.lo `test -f 'llvm/lib/MC/MCAsmInfoCOFF.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfoCOFF.cpp
2724
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-PPCAsmPrinter.lo `test -f 'llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
3709 2725
 
3710
-libllvmmc_la-MCAsmInfoDarwin.lo: llvm/lib/MC/MCAsmInfoDarwin.cpp
3711
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCAsmInfoDarwin.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCAsmInfoDarwin.Tpo -c -o libllvmmc_la-MCAsmInfoDarwin.lo `test -f 'llvm/lib/MC/MCAsmInfoDarwin.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfoDarwin.cpp
3712
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCAsmInfoDarwin.Tpo $(DEPDIR)/libllvmmc_la-MCAsmInfoDarwin.Plo
2726
+libllvmasmprinter_la-ARMAsmPrinter.lo: llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
2727
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ARMAsmPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ARMAsmPrinter.Tpo -c -o libllvmasmprinter_la-ARMAsmPrinter.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
2728
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ARMAsmPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-ARMAsmPrinter.Plo
3713 2729
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3714
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmInfoDarwin.cpp' object='libllvmmc_la-MCAsmInfoDarwin.lo' libtool=yes @AMDEPBACKSLASH@
2730
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp' object='libllvmasmprinter_la-ARMAsmPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3715 2731
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3716
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCAsmInfoDarwin.lo `test -f 'llvm/lib/MC/MCAsmInfoDarwin.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfoDarwin.cpp
2732
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ARMAsmPrinter.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
3717 2733
 
3718
-libllvmmc_la-MCAsmLexer.lo: llvm/lib/MC/MCAsmLexer.cpp
3719
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCAsmLexer.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCAsmLexer.Tpo -c -o libllvmmc_la-MCAsmLexer.lo `test -f 'llvm/lib/MC/MCAsmLexer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmLexer.cpp
3720
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCAsmLexer.Tpo $(DEPDIR)/libllvmmc_la-MCAsmLexer.Plo
2734
+libllvmasmprinter_la-ARMInstPrinter.lo: llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
2735
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ARMInstPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ARMInstPrinter.Tpo -c -o libllvmasmprinter_la-ARMInstPrinter.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
2736
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ARMInstPrinter.Tpo $(DEPDIR)/libllvmasmprinter_la-ARMInstPrinter.Plo
3721 2737
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3722
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmLexer.cpp' object='libllvmmc_la-MCAsmLexer.lo' libtool=yes @AMDEPBACKSLASH@
2738
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp' object='libllvmasmprinter_la-ARMInstPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3723 2739
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3724
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCAsmLexer.lo `test -f 'llvm/lib/MC/MCAsmLexer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmLexer.cpp
2740
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ARMInstPrinter.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMInstPrinter.cpp
3725 2741
 
3726
-libllvmmc_la-MCAsmParser.lo: llvm/lib/MC/MCAsmParser.cpp
3727
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCAsmParser.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCAsmParser.Tpo -c -o libllvmmc_la-MCAsmParser.lo `test -f 'llvm/lib/MC/MCAsmParser.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmParser.cpp
3728
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCAsmParser.Tpo $(DEPDIR)/libllvmmc_la-MCAsmParser.Plo
2742
+libllvmasmprinter_la-ARMMCInstLower.lo: llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp
2743
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmasmprinter_la-ARMMCInstLower.lo -MD -MP -MF $(DEPDIR)/libllvmasmprinter_la-ARMMCInstLower.Tpo -c -o libllvmasmprinter_la-ARMMCInstLower.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp
2744
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmasmprinter_la-ARMMCInstLower.Tpo $(DEPDIR)/libllvmasmprinter_la-ARMMCInstLower.Plo
3729 2745
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3730
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmParser.cpp' object='libllvmmc_la-MCAsmParser.lo' libtool=yes @AMDEPBACKSLASH@
2746
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp' object='libllvmasmprinter_la-ARMMCInstLower.lo' libtool=yes @AMDEPBACKSLASH@
3731 2747
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3732
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCAsmParser.lo `test -f 'llvm/lib/MC/MCAsmParser.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmParser.cpp
2748
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmasmprinter_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmasmprinter_la-ARMMCInstLower.lo `test -f 'llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/AsmPrinter/ARMMCInstLower.cpp
3733 2749
 
3734
-libllvmmc_la-MCAsmStreamer.lo: llvm/lib/MC/MCAsmStreamer.cpp
3735
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCAsmStreamer.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCAsmStreamer.Tpo -c -o libllvmmc_la-MCAsmStreamer.lo `test -f 'llvm/lib/MC/MCAsmStreamer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmStreamer.cpp
3736
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCAsmStreamer.Tpo $(DEPDIR)/libllvmmc_la-MCAsmStreamer.Plo
2750
+BitReader.lo: llvm/lib/Bitcode/Reader/BitReader.cpp
2751
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT BitReader.lo -MD -MP -MF $(DEPDIR)/BitReader.Tpo -c -o BitReader.lo `test -f 'llvm/lib/Bitcode/Reader/BitReader.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/BitReader.cpp
2752
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/BitReader.Tpo $(DEPDIR)/BitReader.Plo
3737 2753
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3738
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmStreamer.cpp' object='libllvmmc_la-MCAsmStreamer.lo' libtool=yes @AMDEPBACKSLASH@
2754
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/BitReader.cpp' object='BitReader.lo' libtool=yes @AMDEPBACKSLASH@
3739 2755
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3740
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCAsmStreamer.lo `test -f 'llvm/lib/MC/MCAsmStreamer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmStreamer.cpp
2756
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o BitReader.lo `test -f 'llvm/lib/Bitcode/Reader/BitReader.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/BitReader.cpp
3741 2757
 
3742
-libllvmmc_la-MCAssembler.lo: llvm/lib/MC/MCAssembler.cpp
3743
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCAssembler.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCAssembler.Tpo -c -o libllvmmc_la-MCAssembler.lo `test -f 'llvm/lib/MC/MCAssembler.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAssembler.cpp
3744
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCAssembler.Tpo $(DEPDIR)/libllvmmc_la-MCAssembler.Plo
2758
+BitcodeReader.lo: llvm/lib/Bitcode/Reader/BitcodeReader.cpp
2759
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT BitcodeReader.lo -MD -MP -MF $(DEPDIR)/BitcodeReader.Tpo -c -o BitcodeReader.lo `test -f 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/BitcodeReader.cpp
2760
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/BitcodeReader.Tpo $(DEPDIR)/BitcodeReader.Plo
3745 2761
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3746
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAssembler.cpp' object='libllvmmc_la-MCAssembler.lo' libtool=yes @AMDEPBACKSLASH@
2762
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/BitcodeReader.cpp' object='BitcodeReader.lo' libtool=yes @AMDEPBACKSLASH@
3747 2763
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3748
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCAssembler.lo `test -f 'llvm/lib/MC/MCAssembler.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAssembler.cpp
2764
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o BitcodeReader.lo `test -f 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/BitcodeReader.cpp
3749 2765
 
3750
-libllvmmc_la-MCCodeEmitter.lo: llvm/lib/MC/MCCodeEmitter.cpp
3751
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCCodeEmitter.Tpo -c -o libllvmmc_la-MCCodeEmitter.lo `test -f 'llvm/lib/MC/MCCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCCodeEmitter.cpp
3752
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCCodeEmitter.Tpo $(DEPDIR)/libllvmmc_la-MCCodeEmitter.Plo
2766
+Deserialize.lo: llvm/lib/Bitcode/Reader/Deserialize.cpp
2767
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Deserialize.lo -MD -MP -MF $(DEPDIR)/Deserialize.Tpo -c -o Deserialize.lo `test -f 'llvm/lib/Bitcode/Reader/Deserialize.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/Deserialize.cpp
2768
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Deserialize.Tpo $(DEPDIR)/Deserialize.Plo
3753 2769
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3754
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCCodeEmitter.cpp' object='libllvmmc_la-MCCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
2770
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/Deserialize.cpp' object='Deserialize.lo' libtool=yes @AMDEPBACKSLASH@
3755 2771
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3756
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCCodeEmitter.lo `test -f 'llvm/lib/MC/MCCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCCodeEmitter.cpp
2772
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Deserialize.lo `test -f 'llvm/lib/Bitcode/Reader/Deserialize.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/Deserialize.cpp
3757 2773
 
3758
-libllvmmc_la-MCContext.lo: llvm/lib/MC/MCContext.cpp
3759
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCContext.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCContext.Tpo -c -o libllvmmc_la-MCContext.lo `test -f 'llvm/lib/MC/MCContext.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCContext.cpp
3760
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCContext.Tpo $(DEPDIR)/libllvmmc_la-MCContext.Plo
2774
+DeserializeAPFloat.lo: llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp
2775
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DeserializeAPFloat.lo -MD -MP -MF $(DEPDIR)/DeserializeAPFloat.Tpo -c -o DeserializeAPFloat.lo `test -f 'llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp
2776
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DeserializeAPFloat.Tpo $(DEPDIR)/DeserializeAPFloat.Plo
3761 2777
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3762
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCContext.cpp' object='libllvmmc_la-MCContext.lo' libtool=yes @AMDEPBACKSLASH@
2778
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp' object='DeserializeAPFloat.lo' libtool=yes @AMDEPBACKSLASH@
3763 2779
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3764
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCContext.lo `test -f 'llvm/lib/MC/MCContext.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCContext.cpp
2780
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DeserializeAPFloat.lo `test -f 'llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/DeserializeAPFloat.cpp
3765 2781
 
3766
-libllvmmc_la-MCExpr.lo: llvm/lib/MC/MCExpr.cpp
3767
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCExpr.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCExpr.Tpo -c -o libllvmmc_la-MCExpr.lo `test -f 'llvm/lib/MC/MCExpr.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCExpr.cpp
3768
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCExpr.Tpo $(DEPDIR)/libllvmmc_la-MCExpr.Plo
2782
+DeserializeAPInt.lo: llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp
2783
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DeserializeAPInt.lo -MD -MP -MF $(DEPDIR)/DeserializeAPInt.Tpo -c -o DeserializeAPInt.lo `test -f 'llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp
2784
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DeserializeAPInt.Tpo $(DEPDIR)/DeserializeAPInt.Plo
3769 2785
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3770
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCExpr.cpp' object='libllvmmc_la-MCExpr.lo' libtool=yes @AMDEPBACKSLASH@
2786
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp' object='DeserializeAPInt.lo' libtool=yes @AMDEPBACKSLASH@
3771 2787
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3772
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCExpr.lo `test -f 'llvm/lib/MC/MCExpr.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCExpr.cpp
2788
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DeserializeAPInt.lo `test -f 'llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Reader/DeserializeAPInt.cpp
3773 2789
 
3774
-libllvmmc_la-MCInst.lo: llvm/lib/MC/MCInst.cpp
3775
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCInst.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCInst.Tpo -c -o libllvmmc_la-MCInst.lo `test -f 'llvm/lib/MC/MCInst.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCInst.cpp
3776
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCInst.Tpo $(DEPDIR)/libllvmmc_la-MCInst.Plo
2790
+BitWriter.lo: llvm/lib/Bitcode/Writer/BitWriter.cpp
2791
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT BitWriter.lo -MD -MP -MF $(DEPDIR)/BitWriter.Tpo -c -o BitWriter.lo `test -f 'llvm/lib/Bitcode/Writer/BitWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitWriter.cpp
2792
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/BitWriter.Tpo $(DEPDIR)/BitWriter.Plo
3777 2793
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3778
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCInst.cpp' object='libllvmmc_la-MCInst.lo' libtool=yes @AMDEPBACKSLASH@
2794
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/BitWriter.cpp' object='BitWriter.lo' libtool=yes @AMDEPBACKSLASH@
3779 2795
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3780
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCInst.lo `test -f 'llvm/lib/MC/MCInst.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCInst.cpp
2796
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o BitWriter.lo `test -f 'llvm/lib/Bitcode/Writer/BitWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitWriter.cpp
3781 2797
 
3782
-libllvmmc_la-MCMachOStreamer.lo: llvm/lib/MC/MCMachOStreamer.cpp
3783
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCMachOStreamer.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCMachOStreamer.Tpo -c -o libllvmmc_la-MCMachOStreamer.lo `test -f 'llvm/lib/MC/MCMachOStreamer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCMachOStreamer.cpp
3784
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCMachOStreamer.Tpo $(DEPDIR)/libllvmmc_la-MCMachOStreamer.Plo
2798
+BitcodeWriter.lo: llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
2799
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT BitcodeWriter.lo -MD -MP -MF $(DEPDIR)/BitcodeWriter.Tpo -c -o BitcodeWriter.lo `test -f 'llvm/lib/Bitcode/Writer/BitcodeWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
2800
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/BitcodeWriter.Tpo $(DEPDIR)/BitcodeWriter.Plo
3785 2801
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3786
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCMachOStreamer.cpp' object='libllvmmc_la-MCMachOStreamer.lo' libtool=yes @AMDEPBACKSLASH@
2802
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/BitcodeWriter.cpp' object='BitcodeWriter.lo' libtool=yes @AMDEPBACKSLASH@
3787 2803
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3788
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCMachOStreamer.lo `test -f 'llvm/lib/MC/MCMachOStreamer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCMachOStreamer.cpp
2804
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o BitcodeWriter.lo `test -f 'llvm/lib/Bitcode/Writer/BitcodeWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
3789 2805
 
3790
-libllvmmc_la-MCNullStreamer.lo: llvm/lib/MC/MCNullStreamer.cpp
3791
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCNullStreamer.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCNullStreamer.Tpo -c -o libllvmmc_la-MCNullStreamer.lo `test -f 'llvm/lib/MC/MCNullStreamer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCNullStreamer.cpp
3792
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCNullStreamer.Tpo $(DEPDIR)/libllvmmc_la-MCNullStreamer.Plo
2806
+BitcodeWriterPass.lo: llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
2807
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT BitcodeWriterPass.lo -MD -MP -MF $(DEPDIR)/BitcodeWriterPass.Tpo -c -o BitcodeWriterPass.lo `test -f 'llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
2808
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/BitcodeWriterPass.Tpo $(DEPDIR)/BitcodeWriterPass.Plo
3793 2809
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3794
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCNullStreamer.cpp' object='libllvmmc_la-MCNullStreamer.lo' libtool=yes @AMDEPBACKSLASH@
2810
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp' object='BitcodeWriterPass.lo' libtool=yes @AMDEPBACKSLASH@
3795 2811
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3796
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCNullStreamer.lo `test -f 'llvm/lib/MC/MCNullStreamer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCNullStreamer.cpp
2812
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o BitcodeWriterPass.lo `test -f 'llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
3797 2813
 
3798
-libllvmmc_la-MCSection.lo: llvm/lib/MC/MCSection.cpp
3799
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCSection.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCSection.Tpo -c -o libllvmmc_la-MCSection.lo `test -f 'llvm/lib/MC/MCSection.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCSection.cpp
3800
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCSection.Tpo $(DEPDIR)/libllvmmc_la-MCSection.Plo
2814
+Serialize.lo: llvm/lib/Bitcode/Writer/Serialize.cpp
2815
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Serialize.lo -MD -MP -MF $(DEPDIR)/Serialize.Tpo -c -o Serialize.lo `test -f 'llvm/lib/Bitcode/Writer/Serialize.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/Serialize.cpp
2816
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Serialize.Tpo $(DEPDIR)/Serialize.Plo
3801 2817
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3802
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCSection.cpp' object='libllvmmc_la-MCSection.lo' libtool=yes @AMDEPBACKSLASH@
2818
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/Serialize.cpp' object='Serialize.lo' libtool=yes @AMDEPBACKSLASH@
3803 2819
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3804
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCSection.lo `test -f 'llvm/lib/MC/MCSection.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCSection.cpp
2820
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Serialize.lo `test -f 'llvm/lib/Bitcode/Writer/Serialize.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/Serialize.cpp
3805 2821
 
3806
-libllvmmc_la-MCSectionELF.lo: llvm/lib/MC/MCSectionELF.cpp
3807
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCSectionELF.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCSectionELF.Tpo -c -o libllvmmc_la-MCSectionELF.lo `test -f 'llvm/lib/MC/MCSectionELF.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCSectionELF.cpp
3808
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCSectionELF.Tpo $(DEPDIR)/libllvmmc_la-MCSectionELF.Plo
2822
+SerializeAPFloat.lo: llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp
2823
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SerializeAPFloat.lo -MD -MP -MF $(DEPDIR)/SerializeAPFloat.Tpo -c -o SerializeAPFloat.lo `test -f 'llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp
2824
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SerializeAPFloat.Tpo $(DEPDIR)/SerializeAPFloat.Plo
3809 2825
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3810
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCSectionELF.cpp' object='libllvmmc_la-MCSectionELF.lo' libtool=yes @AMDEPBACKSLASH@
2826
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp' object='SerializeAPFloat.lo' libtool=yes @AMDEPBACKSLASH@
3811 2827
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3812
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCSectionELF.lo `test -f 'llvm/lib/MC/MCSectionELF.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCSectionELF.cpp
2828
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SerializeAPFloat.lo `test -f 'llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/SerializeAPFloat.cpp
3813 2829
 
3814
-libllvmmc_la-MCSectionMachO.lo: llvm/lib/MC/MCSectionMachO.cpp
3815
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCSectionMachO.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCSectionMachO.Tpo -c -o libllvmmc_la-MCSectionMachO.lo `test -f 'llvm/lib/MC/MCSectionMachO.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCSectionMachO.cpp
3816
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCSectionMachO.Tpo $(DEPDIR)/libllvmmc_la-MCSectionMachO.Plo
2830
+SerializeAPInt.lo: llvm/lib/Bitcode/Writer/SerializeAPInt.cpp
2831
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SerializeAPInt.lo -MD -MP -MF $(DEPDIR)/SerializeAPInt.Tpo -c -o SerializeAPInt.lo `test -f 'llvm/lib/Bitcode/Writer/SerializeAPInt.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/SerializeAPInt.cpp
2832
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SerializeAPInt.Tpo $(DEPDIR)/SerializeAPInt.Plo
3817 2833
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3818
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCSectionMachO.cpp' object='libllvmmc_la-MCSectionMachO.lo' libtool=yes @AMDEPBACKSLASH@
2834
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/SerializeAPInt.cpp' object='SerializeAPInt.lo' libtool=yes @AMDEPBACKSLASH@
3819 2835
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3820
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCSectionMachO.lo `test -f 'llvm/lib/MC/MCSectionMachO.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCSectionMachO.cpp
2836
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SerializeAPInt.lo `test -f 'llvm/lib/Bitcode/Writer/SerializeAPInt.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/SerializeAPInt.cpp
3821 2837
 
3822
-libllvmmc_la-MCStreamer.lo: llvm/lib/MC/MCStreamer.cpp
3823
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCStreamer.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCStreamer.Tpo -c -o libllvmmc_la-MCStreamer.lo `test -f 'llvm/lib/MC/MCStreamer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCStreamer.cpp
3824
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCStreamer.Tpo $(DEPDIR)/libllvmmc_la-MCStreamer.Plo
2838
+ValueEnumerator.lo: llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
2839
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ValueEnumerator.lo -MD -MP -MF $(DEPDIR)/ValueEnumerator.Tpo -c -o ValueEnumerator.lo `test -f 'llvm/lib/Bitcode/Writer/ValueEnumerator.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
2840
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ValueEnumerator.Tpo $(DEPDIR)/ValueEnumerator.Plo
3825 2841
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3826
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCStreamer.cpp' object='libllvmmc_la-MCStreamer.lo' libtool=yes @AMDEPBACKSLASH@
2842
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Bitcode/Writer/ValueEnumerator.cpp' object='ValueEnumerator.lo' libtool=yes @AMDEPBACKSLASH@
3827 2843
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3828
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCStreamer.lo `test -f 'llvm/lib/MC/MCStreamer.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCStreamer.cpp
2844
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ValueEnumerator.lo `test -f 'llvm/lib/Bitcode/Writer/ValueEnumerator.cpp' || echo '$(srcdir)/'`llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
3829 2845
 
3830
-libllvmmc_la-MCSymbol.lo: llvm/lib/MC/MCSymbol.cpp
3831
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCSymbol.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCSymbol.Tpo -c -o libllvmmc_la-MCSymbol.lo `test -f 'llvm/lib/MC/MCSymbol.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCSymbol.cpp
3832
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCSymbol.Tpo $(DEPDIR)/libllvmmc_la-MCSymbol.Plo
2846
+LLVMTargetMachine.lo: llvm/lib/CodeGen/LLVMTargetMachine.cpp
2847
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT LLVMTargetMachine.lo -MD -MP -MF $(DEPDIR)/LLVMTargetMachine.Tpo -c -o LLVMTargetMachine.lo `test -f 'llvm/lib/CodeGen/LLVMTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LLVMTargetMachine.cpp
2848
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/LLVMTargetMachine.Tpo $(DEPDIR)/LLVMTargetMachine.Plo
3833 2849
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3834
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCSymbol.cpp' object='libllvmmc_la-MCSymbol.lo' libtool=yes @AMDEPBACKSLASH@
2850
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LLVMTargetMachine.cpp' object='LLVMTargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
3835 2851
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3836
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCSymbol.lo `test -f 'llvm/lib/MC/MCSymbol.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCSymbol.cpp
2852
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o LLVMTargetMachine.lo `test -f 'llvm/lib/CodeGen/LLVMTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LLVMTargetMachine.cpp
3837 2853
 
3838
-libllvmmc_la-MCValue.lo: llvm/lib/MC/MCValue.cpp
3839
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-MCValue.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-MCValue.Tpo -c -o libllvmmc_la-MCValue.lo `test -f 'llvm/lib/MC/MCValue.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCValue.cpp
3840
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-MCValue.Tpo $(DEPDIR)/libllvmmc_la-MCValue.Plo
2854
+LiveVariables.lo: llvm/lib/CodeGen/LiveVariables.cpp
2855
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT LiveVariables.lo -MD -MP -MF $(DEPDIR)/LiveVariables.Tpo -c -o LiveVariables.lo `test -f 'llvm/lib/CodeGen/LiveVariables.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveVariables.cpp
2856
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/LiveVariables.Tpo $(DEPDIR)/LiveVariables.Plo
3841 2857
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3842
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCValue.cpp' object='libllvmmc_la-MCValue.lo' libtool=yes @AMDEPBACKSLASH@
2858
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/LiveVariables.cpp' object='LiveVariables.lo' libtool=yes @AMDEPBACKSLASH@
3843 2859
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3844
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-MCValue.lo `test -f 'llvm/lib/MC/MCValue.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCValue.cpp
2860
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o LiveVariables.lo `test -f 'llvm/lib/CodeGen/LiveVariables.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/LiveVariables.cpp
3845 2861
 
3846
-libllvmmc_la-TargetAsmParser.lo: llvm/lib/MC/TargetAsmParser.cpp
3847
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmmc_la-TargetAsmParser.lo -MD -MP -MF $(DEPDIR)/libllvmmc_la-TargetAsmParser.Tpo -c -o libllvmmc_la-TargetAsmParser.lo `test -f 'llvm/lib/MC/TargetAsmParser.cpp' || echo '$(srcdir)/'`llvm/lib/MC/TargetAsmParser.cpp
3848
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmmc_la-TargetAsmParser.Tpo $(DEPDIR)/libllvmmc_la-TargetAsmParser.Plo
2862
+MachineBasicBlock.lo: llvm/lib/CodeGen/MachineBasicBlock.cpp
2863
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MachineBasicBlock.lo -MD -MP -MF $(DEPDIR)/MachineBasicBlock.Tpo -c -o MachineBasicBlock.lo `test -f 'llvm/lib/CodeGen/MachineBasicBlock.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineBasicBlock.cpp
2864
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MachineBasicBlock.Tpo $(DEPDIR)/MachineBasicBlock.Plo
3849 2865
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3850
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/TargetAsmParser.cpp' object='libllvmmc_la-TargetAsmParser.lo' libtool=yes @AMDEPBACKSLASH@
2866
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineBasicBlock.cpp' object='MachineBasicBlock.lo' libtool=yes @AMDEPBACKSLASH@
3851 2867
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3852
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmmc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmmc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmmc_la-TargetAsmParser.lo `test -f 'llvm/lib/MC/TargetAsmParser.cpp' || echo '$(srcdir)/'`llvm/lib/MC/TargetAsmParser.cpp
2868
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MachineBasicBlock.lo `test -f 'llvm/lib/CodeGen/MachineBasicBlock.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineBasicBlock.cpp
3853 2869
 
3854
-libllvmscalar_la-CodeGenPrepare.lo: llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp
3855
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmscalar_la-CodeGenPrepare.lo -MD -MP -MF $(DEPDIR)/libllvmscalar_la-CodeGenPrepare.Tpo -c -o libllvmscalar_la-CodeGenPrepare.lo `test -f 'llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp
3856
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmscalar_la-CodeGenPrepare.Tpo $(DEPDIR)/libllvmscalar_la-CodeGenPrepare.Plo
2870
+MachineFunctionPass.lo: llvm/lib/CodeGen/MachineFunctionPass.cpp
2871
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MachineFunctionPass.lo -MD -MP -MF $(DEPDIR)/MachineFunctionPass.Tpo -c -o MachineFunctionPass.lo `test -f 'llvm/lib/CodeGen/MachineFunctionPass.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunctionPass.cpp
2872
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MachineFunctionPass.Tpo $(DEPDIR)/MachineFunctionPass.Plo
3857 2873
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3858
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp' object='libllvmscalar_la-CodeGenPrepare.lo' libtool=yes @AMDEPBACKSLASH@
2874
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineFunctionPass.cpp' object='MachineFunctionPass.lo' libtool=yes @AMDEPBACKSLASH@
3859 2875
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3860
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmscalar_la-CodeGenPrepare.lo `test -f 'llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp
2876
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MachineFunctionPass.lo `test -f 'llvm/lib/CodeGen/MachineFunctionPass.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunctionPass.cpp
3861 2877
 
3862
-libllvmscalar_la-DCE.lo: llvm/lib/Transforms/Scalar/DCE.cpp
3863
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmscalar_la-DCE.lo -MD -MP -MF $(DEPDIR)/libllvmscalar_la-DCE.Tpo -c -o libllvmscalar_la-DCE.lo `test -f 'llvm/lib/Transforms/Scalar/DCE.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/DCE.cpp
3864
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmscalar_la-DCE.Tpo $(DEPDIR)/libllvmscalar_la-DCE.Plo
2878
+MachineRegisterInfo.lo: llvm/lib/CodeGen/MachineRegisterInfo.cpp
2879
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MachineRegisterInfo.lo -MD -MP -MF $(DEPDIR)/MachineRegisterInfo.Tpo -c -o MachineRegisterInfo.lo `test -f 'llvm/lib/CodeGen/MachineRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineRegisterInfo.cpp
2880
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MachineRegisterInfo.Tpo $(DEPDIR)/MachineRegisterInfo.Plo
3865 2881
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3866
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Scalar/DCE.cpp' object='libllvmscalar_la-DCE.lo' libtool=yes @AMDEPBACKSLASH@
2882
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineRegisterInfo.cpp' object='MachineRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3867 2883
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3868
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmscalar_la-DCE.lo `test -f 'llvm/lib/Transforms/Scalar/DCE.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/DCE.cpp
2884
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MachineRegisterInfo.lo `test -f 'llvm/lib/CodeGen/MachineRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineRegisterInfo.cpp
3869 2885
 
3870
-libllvmscalar_la-GEPSplitter.lo: llvm/lib/Transforms/Scalar/GEPSplitter.cpp
3871
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmscalar_la-GEPSplitter.lo -MD -MP -MF $(DEPDIR)/libllvmscalar_la-GEPSplitter.Tpo -c -o libllvmscalar_la-GEPSplitter.lo `test -f 'llvm/lib/Transforms/Scalar/GEPSplitter.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/GEPSplitter.cpp
3872
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmscalar_la-GEPSplitter.Tpo $(DEPDIR)/libllvmscalar_la-GEPSplitter.Plo
2886
+MaxStackAlignment.lo: llvm/lib/CodeGen/MaxStackAlignment.cpp
2887
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MaxStackAlignment.lo -MD -MP -MF $(DEPDIR)/MaxStackAlignment.Tpo -c -o MaxStackAlignment.lo `test -f 'llvm/lib/CodeGen/MaxStackAlignment.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MaxStackAlignment.cpp
2888
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MaxStackAlignment.Tpo $(DEPDIR)/MaxStackAlignment.Plo
3873 2889
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3874
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Scalar/GEPSplitter.cpp' object='libllvmscalar_la-GEPSplitter.lo' libtool=yes @AMDEPBACKSLASH@
2890
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MaxStackAlignment.cpp' object='MaxStackAlignment.lo' libtool=yes @AMDEPBACKSLASH@
3875 2891
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3876
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmscalar_la-GEPSplitter.lo `test -f 'llvm/lib/Transforms/Scalar/GEPSplitter.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/GEPSplitter.cpp
2892
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MaxStackAlignment.lo `test -f 'llvm/lib/CodeGen/MaxStackAlignment.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MaxStackAlignment.cpp
3877 2893
 
3878
-libllvmscalar_la-GVN.lo: llvm/lib/Transforms/Scalar/GVN.cpp
3879
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmscalar_la-GVN.lo -MD -MP -MF $(DEPDIR)/libllvmscalar_la-GVN.Tpo -c -o libllvmscalar_la-GVN.lo `test -f 'llvm/lib/Transforms/Scalar/GVN.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/GVN.cpp
3880
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmscalar_la-GVN.Tpo $(DEPDIR)/libllvmscalar_la-GVN.Plo
2894
+ObjectCodeEmitter.lo: llvm/lib/CodeGen/ObjectCodeEmitter.cpp
2895
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ObjectCodeEmitter.lo -MD -MP -MF $(DEPDIR)/ObjectCodeEmitter.Tpo -c -o ObjectCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ObjectCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ObjectCodeEmitter.cpp
2896
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ObjectCodeEmitter.Tpo $(DEPDIR)/ObjectCodeEmitter.Plo
3881 2897
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3882
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Scalar/GVN.cpp' object='libllvmscalar_la-GVN.lo' libtool=yes @AMDEPBACKSLASH@
2898
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ObjectCodeEmitter.cpp' object='ObjectCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
3883 2899
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3884
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmscalar_la-GVN.lo `test -f 'llvm/lib/Transforms/Scalar/GVN.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/GVN.cpp
2900
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ObjectCodeEmitter.lo `test -f 'llvm/lib/CodeGen/ObjectCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ObjectCodeEmitter.cpp
3885 2901
 
3886
-libllvmscalar_la-LoopStrengthReduce.lo: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
3887
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmscalar_la-LoopStrengthReduce.lo -MD -MP -MF $(DEPDIR)/libllvmscalar_la-LoopStrengthReduce.Tpo -c -o libllvmscalar_la-LoopStrengthReduce.lo `test -f 'llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
3888
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmscalar_la-LoopStrengthReduce.Tpo $(DEPDIR)/libllvmscalar_la-LoopStrengthReduce.Plo
2902
+PseudoSourceValue.lo: llvm/lib/CodeGen/PseudoSourceValue.cpp
2903
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT PseudoSourceValue.lo -MD -MP -MF $(DEPDIR)/PseudoSourceValue.Tpo -c -o PseudoSourceValue.lo `test -f 'llvm/lib/CodeGen/PseudoSourceValue.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PseudoSourceValue.cpp
2904
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/PseudoSourceValue.Tpo $(DEPDIR)/PseudoSourceValue.Plo
3889 2905
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3890
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp' object='libllvmscalar_la-LoopStrengthReduce.lo' libtool=yes @AMDEPBACKSLASH@
2906
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/PseudoSourceValue.cpp' object='PseudoSourceValue.lo' libtool=yes @AMDEPBACKSLASH@
3891 2907
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3892
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmscalar_la-LoopStrengthReduce.lo `test -f 'llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
2908
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o PseudoSourceValue.lo `test -f 'llvm/lib/CodeGen/PseudoSourceValue.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/PseudoSourceValue.cpp
3893 2909
 
3894
-libllvmscalar_la-ConstantProp.lo: llvm/lib/Transforms/Scalar/ConstantProp.cpp
3895
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmscalar_la-ConstantProp.lo -MD -MP -MF $(DEPDIR)/libllvmscalar_la-ConstantProp.Tpo -c -o libllvmscalar_la-ConstantProp.lo `test -f 'llvm/lib/Transforms/Scalar/ConstantProp.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/ConstantProp.cpp
3896
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmscalar_la-ConstantProp.Tpo $(DEPDIR)/libllvmscalar_la-ConstantProp.Plo
2910
+RegisterScavenging.lo: llvm/lib/CodeGen/RegisterScavenging.cpp
2911
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT RegisterScavenging.lo -MD -MP -MF $(DEPDIR)/RegisterScavenging.Tpo -c -o RegisterScavenging.lo `test -f 'llvm/lib/CodeGen/RegisterScavenging.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegisterScavenging.cpp
2912
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/RegisterScavenging.Tpo $(DEPDIR)/RegisterScavenging.Plo
3897 2913
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3898
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Scalar/ConstantProp.cpp' object='libllvmscalar_la-ConstantProp.lo' libtool=yes @AMDEPBACKSLASH@
2914
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/RegisterScavenging.cpp' object='RegisterScavenging.lo' libtool=yes @AMDEPBACKSLASH@
3899 2915
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3900
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmscalar_la-ConstantProp.lo `test -f 'llvm/lib/Transforms/Scalar/ConstantProp.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/ConstantProp.cpp
2916
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o RegisterScavenging.lo `test -f 'llvm/lib/CodeGen/RegisterScavenging.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/RegisterScavenging.cpp
3901 2917
 
3902
-libllvmscalar_la-SimplifyCFGPass.lo: llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
3903
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmscalar_la-SimplifyCFGPass.lo -MD -MP -MF $(DEPDIR)/libllvmscalar_la-SimplifyCFGPass.Tpo -c -o libllvmscalar_la-SimplifyCFGPass.lo `test -f 'llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
3904
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmscalar_la-SimplifyCFGPass.Tpo $(DEPDIR)/libllvmscalar_la-SimplifyCFGPass.Plo
2918
+CallingConvLower.lo: llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
2919
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT CallingConvLower.lo -MD -MP -MF $(DEPDIR)/CallingConvLower.Tpo -c -o CallingConvLower.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
2920
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/CallingConvLower.Tpo $(DEPDIR)/CallingConvLower.Plo
3905 2921
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3906
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp' object='libllvmscalar_la-SimplifyCFGPass.lo' libtool=yes @AMDEPBACKSLASH@
2922
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp' object='CallingConvLower.lo' libtool=yes @AMDEPBACKSLASH@
3907 2923
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3908
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmscalar_la_CPPFLAGS) $(CPPFLAGS) $(libllvmscalar_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmscalar_la-SimplifyCFGPass.lo `test -f 'llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
2924
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o CallingConvLower.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
3909 2925
 
3910
-libllvmsdag_la-CallingConvLower.lo: llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
3911
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-CallingConvLower.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-CallingConvLower.Tpo -c -o libllvmsdag_la-CallingConvLower.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
3912
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-CallingConvLower.Tpo $(DEPDIR)/libllvmsdag_la-CallingConvLower.Plo
2926
+DAGCombiner.lo: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
2927
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DAGCombiner.lo -MD -MP -MF $(DEPDIR)/DAGCombiner.Tpo -c -o DAGCombiner.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
2928
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DAGCombiner.Tpo $(DEPDIR)/DAGCombiner.Plo
3913 2929
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3914
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp' object='libllvmsdag_la-CallingConvLower.lo' libtool=yes @AMDEPBACKSLASH@
2930
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp' object='DAGCombiner.lo' libtool=yes @AMDEPBACKSLASH@
3915 2931
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3916
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-CallingConvLower.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/CallingConvLower.cpp
2932
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DAGCombiner.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
3917 2933
 
3918
-libllvmsdag_la-DAGCombiner.lo: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
3919
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-DAGCombiner.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-DAGCombiner.Tpo -c -o libllvmsdag_la-DAGCombiner.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
3920
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-DAGCombiner.Tpo $(DEPDIR)/libllvmsdag_la-DAGCombiner.Plo
2934
+SelectionDAG.lo: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
2935
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SelectionDAG.lo -MD -MP -MF $(DEPDIR)/SelectionDAG.Tpo -c -o SelectionDAG.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
2936
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SelectionDAG.Tpo $(DEPDIR)/SelectionDAG.Plo
3921 2937
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3922
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp' object='libllvmsdag_la-DAGCombiner.lo' libtool=yes @AMDEPBACKSLASH@
2938
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp' object='SelectionDAG.lo' libtool=yes @AMDEPBACKSLASH@
3923 2939
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3924
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-DAGCombiner.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
2940
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SelectionDAG.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
3925 2941
 
3926
-libllvmsdag_la-FastISel.lo: llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
3927
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-FastISel.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-FastISel.Tpo -c -o libllvmsdag_la-FastISel.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
3928
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-FastISel.Tpo $(DEPDIR)/libllvmsdag_la-FastISel.Plo
2942
+SelectionDAGBuilder.lo: llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
2943
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SelectionDAGBuilder.lo -MD -MP -MF $(DEPDIR)/SelectionDAGBuilder.Tpo -c -o SelectionDAGBuilder.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
2944
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SelectionDAGBuilder.Tpo $(DEPDIR)/SelectionDAGBuilder.Plo
3929 2945
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3930
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/FastISel.cpp' object='libllvmsdag_la-FastISel.lo' libtool=yes @AMDEPBACKSLASH@
2946
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp' object='SelectionDAGBuilder.lo' libtool=yes @AMDEPBACKSLASH@
3931 2947
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3932
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-FastISel.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
2948
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SelectionDAGBuilder.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
3933 2949
 
3934
-libllvmsdag_la-FunctionLoweringInfo.lo: llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
3935
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-FunctionLoweringInfo.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-FunctionLoweringInfo.Tpo -c -o libllvmsdag_la-FunctionLoweringInfo.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
3936
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-FunctionLoweringInfo.Tpo $(DEPDIR)/libllvmsdag_la-FunctionLoweringInfo.Plo
2950
+SelectionDAGISel.lo: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
2951
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SelectionDAGISel.lo -MD -MP -MF $(DEPDIR)/SelectionDAGISel.Tpo -c -o SelectionDAGISel.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
2952
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SelectionDAGISel.Tpo $(DEPDIR)/SelectionDAGISel.Plo
3937 2953
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3938
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp' object='libllvmsdag_la-FunctionLoweringInfo.lo' libtool=yes @AMDEPBACKSLASH@
2954
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp' object='SelectionDAGISel.lo' libtool=yes @AMDEPBACKSLASH@
3939 2955
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3940
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-FunctionLoweringInfo.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
2956
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SelectionDAGISel.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
3941 2957
 
3942
-libllvmsdag_la-InstrEmitter.lo: llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
3943
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-InstrEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-InstrEmitter.Tpo -c -o libllvmsdag_la-InstrEmitter.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
3944
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-InstrEmitter.Tpo $(DEPDIR)/libllvmsdag_la-InstrEmitter.Plo
2958
+TargetLowering.lo: llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
2959
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetLowering.lo -MD -MP -MF $(DEPDIR)/TargetLowering.Tpo -c -o TargetLowering.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
2960
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetLowering.Tpo $(DEPDIR)/TargetLowering.Plo
3945 2961
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3946
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp' object='libllvmsdag_la-InstrEmitter.lo' libtool=yes @AMDEPBACKSLASH@
2962
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp' object='TargetLowering.lo' libtool=yes @AMDEPBACKSLASH@
3947 2963
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3948
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-InstrEmitter.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
2964
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetLowering.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
3949 2965
 
3950
-libllvmsdag_la-LegalizeDAG.lo: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
3951
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-LegalizeDAG.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-LegalizeDAG.Tpo -c -o libllvmsdag_la-LegalizeDAG.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
3952
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-LegalizeDAG.Tpo $(DEPDIR)/libllvmsdag_la-LegalizeDAG.Plo
2966
+TargetInstrInfoImpl.lo: llvm/lib/CodeGen/TargetInstrInfoImpl.cpp
2967
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetInstrInfoImpl.lo -MD -MP -MF $(DEPDIR)/TargetInstrInfoImpl.Tpo -c -o TargetInstrInfoImpl.lo `test -f 'llvm/lib/CodeGen/TargetInstrInfoImpl.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/TargetInstrInfoImpl.cpp
2968
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetInstrInfoImpl.Tpo $(DEPDIR)/TargetInstrInfoImpl.Plo
3953 2969
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3954
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp' object='libllvmsdag_la-LegalizeDAG.lo' libtool=yes @AMDEPBACKSLASH@
2970
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/TargetInstrInfoImpl.cpp' object='TargetInstrInfoImpl.lo' libtool=yes @AMDEPBACKSLASH@
3955 2971
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3956
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-LegalizeDAG.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
2972
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetInstrInfoImpl.lo `test -f 'llvm/lib/CodeGen/TargetInstrInfoImpl.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/TargetInstrInfoImpl.cpp
3957 2973
 
3958
-libllvmsdag_la-LegalizeFloatTypes.lo: llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
3959
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-LegalizeFloatTypes.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-LegalizeFloatTypes.Tpo -c -o libllvmsdag_la-LegalizeFloatTypes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
3960
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-LegalizeFloatTypes.Tpo $(DEPDIR)/libllvmsdag_la-LegalizeFloatTypes.Plo
2974
+MCAsmInfoDarwin.lo: llvm/lib/MC/MCAsmInfoDarwin.cpp
2975
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MCAsmInfoDarwin.lo -MD -MP -MF $(DEPDIR)/MCAsmInfoDarwin.Tpo -c -o MCAsmInfoDarwin.lo `test -f 'llvm/lib/MC/MCAsmInfoDarwin.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfoDarwin.cpp
2976
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MCAsmInfoDarwin.Tpo $(DEPDIR)/MCAsmInfoDarwin.Plo
3961 2977
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3962
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp' object='libllvmsdag_la-LegalizeFloatTypes.lo' libtool=yes @AMDEPBACKSLASH@
2978
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmInfoDarwin.cpp' object='MCAsmInfoDarwin.lo' libtool=yes @AMDEPBACKSLASH@
3963 2979
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3964
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-LegalizeFloatTypes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
2980
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MCAsmInfoDarwin.lo `test -f 'llvm/lib/MC/MCAsmInfoDarwin.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfoDarwin.cpp
3965 2981
 
3966
-libllvmsdag_la-LegalizeIntegerTypes.lo: llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
3967
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-LegalizeIntegerTypes.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-LegalizeIntegerTypes.Tpo -c -o libllvmsdag_la-LegalizeIntegerTypes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
3968
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-LegalizeIntegerTypes.Tpo $(DEPDIR)/libllvmsdag_la-LegalizeIntegerTypes.Plo
2982
+StringRef.lo: llvm/lib/Support/StringRef.cpp
2983
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringRef.lo -MD -MP -MF $(DEPDIR)/StringRef.Tpo -c -o StringRef.lo `test -f 'llvm/lib/Support/StringRef.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringRef.cpp
2984
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/StringRef.Tpo $(DEPDIR)/StringRef.Plo
3969 2985
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3970
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp' object='libllvmsdag_la-LegalizeIntegerTypes.lo' libtool=yes @AMDEPBACKSLASH@
2986
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/StringRef.cpp' object='StringRef.lo' libtool=yes @AMDEPBACKSLASH@
3971 2987
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3972
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-LegalizeIntegerTypes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
2988
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringRef.lo `test -f 'llvm/lib/Support/StringRef.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringRef.cpp
3973 2989
 
3974
-libllvmsdag_la-LegalizeTypes.lo: llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
3975
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-LegalizeTypes.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-LegalizeTypes.Tpo -c -o libllvmsdag_la-LegalizeTypes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
3976
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-LegalizeTypes.Tpo $(DEPDIR)/libllvmsdag_la-LegalizeTypes.Plo
2990
+TargetFrameInfo.lo: llvm/lib/Target/TargetFrameInfo.cpp
2991
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetFrameInfo.lo -MD -MP -MF $(DEPDIR)/TargetFrameInfo.Tpo -c -o TargetFrameInfo.lo `test -f 'llvm/lib/Target/TargetFrameInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetFrameInfo.cpp
2992
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetFrameInfo.Tpo $(DEPDIR)/TargetFrameInfo.Plo
3977 2993
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3978
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp' object='libllvmsdag_la-LegalizeTypes.lo' libtool=yes @AMDEPBACKSLASH@
2994
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetFrameInfo.cpp' object='TargetFrameInfo.lo' libtool=yes @AMDEPBACKSLASH@
3979 2995
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3980
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-LegalizeTypes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
2996
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetFrameInfo.lo `test -f 'llvm/lib/Target/TargetFrameInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetFrameInfo.cpp
3981 2997
 
3982
-libllvmsdag_la-LegalizeTypesGeneric.lo: llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
3983
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-LegalizeTypesGeneric.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-LegalizeTypesGeneric.Tpo -c -o libllvmsdag_la-LegalizeTypesGeneric.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
3984
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-LegalizeTypesGeneric.Tpo $(DEPDIR)/libllvmsdag_la-LegalizeTypesGeneric.Plo
2998
+TargetInstrInfo.lo: llvm/lib/Target/TargetInstrInfo.cpp
2999
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetInstrInfo.lo -MD -MP -MF $(DEPDIR)/TargetInstrInfo.Tpo -c -o TargetInstrInfo.lo `test -f 'llvm/lib/Target/TargetInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetInstrInfo.cpp
3000
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetInstrInfo.Tpo $(DEPDIR)/TargetInstrInfo.Plo
3985 3001
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3986
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp' object='libllvmsdag_la-LegalizeTypesGeneric.lo' libtool=yes @AMDEPBACKSLASH@
3002
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetInstrInfo.cpp' object='TargetInstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3987 3003
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3988
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-LegalizeTypesGeneric.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
3004
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetInstrInfo.lo `test -f 'llvm/lib/Target/TargetInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetInstrInfo.cpp
3989 3005
 
3990
-libllvmsdag_la-LegalizeVectorOps.lo: llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
3991
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-LegalizeVectorOps.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-LegalizeVectorOps.Tpo -c -o libllvmsdag_la-LegalizeVectorOps.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
3992
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-LegalizeVectorOps.Tpo $(DEPDIR)/libllvmsdag_la-LegalizeVectorOps.Plo
3006
+TargetLoweringObjectFile.lo: llvm/lib/Target/TargetLoweringObjectFile.cpp
3007
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetLoweringObjectFile.lo -MD -MP -MF $(DEPDIR)/TargetLoweringObjectFile.Tpo -c -o TargetLoweringObjectFile.lo `test -f 'llvm/lib/Target/TargetLoweringObjectFile.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetLoweringObjectFile.cpp
3008
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetLoweringObjectFile.Tpo $(DEPDIR)/TargetLoweringObjectFile.Plo
3993 3009
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
3994
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp' object='libllvmsdag_la-LegalizeVectorOps.lo' libtool=yes @AMDEPBACKSLASH@
3010
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetLoweringObjectFile.cpp' object='TargetLoweringObjectFile.lo' libtool=yes @AMDEPBACKSLASH@
3995 3011
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
3996
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-LegalizeVectorOps.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
3012
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetLoweringObjectFile.lo `test -f 'llvm/lib/Target/TargetLoweringObjectFile.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetLoweringObjectFile.cpp
3997 3013
 
3998
-libllvmsdag_la-LegalizeVectorTypes.lo: llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
3999
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-LegalizeVectorTypes.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-LegalizeVectorTypes.Tpo -c -o libllvmsdag_la-LegalizeVectorTypes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
4000
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-LegalizeVectorTypes.Tpo $(DEPDIR)/libllvmsdag_la-LegalizeVectorTypes.Plo
3014
+TargetRegisterInfo.lo: llvm/lib/Target/TargetRegisterInfo.cpp
3015
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetRegisterInfo.lo -MD -MP -MF $(DEPDIR)/TargetRegisterInfo.Tpo -c -o TargetRegisterInfo.lo `test -f 'llvm/lib/Target/TargetRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetRegisterInfo.cpp
3016
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetRegisterInfo.Tpo $(DEPDIR)/TargetRegisterInfo.Plo
4001 3017
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4002
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp' object='libllvmsdag_la-LegalizeVectorTypes.lo' libtool=yes @AMDEPBACKSLASH@
3018
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetRegisterInfo.cpp' object='TargetRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
4003 3019
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4004
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-LegalizeVectorTypes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
3020
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetRegisterInfo.lo `test -f 'llvm/lib/Target/TargetRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetRegisterInfo.cpp
4005 3021
 
4006
-libllvmsdag_la-ScheduleDAGFast.lo: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
4007
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-ScheduleDAGFast.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-ScheduleDAGFast.Tpo -c -o libllvmsdag_la-ScheduleDAGFast.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
4008
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-ScheduleDAGFast.Tpo $(DEPDIR)/libllvmsdag_la-ScheduleDAGFast.Plo
3022
+TargetSubtarget.lo: llvm/lib/Target/TargetSubtarget.cpp
3023
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetSubtarget.lo -MD -MP -MF $(DEPDIR)/TargetSubtarget.Tpo -c -o TargetSubtarget.lo `test -f 'llvm/lib/Target/TargetSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetSubtarget.cpp
3024
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetSubtarget.Tpo $(DEPDIR)/TargetSubtarget.Plo
4009 3025
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4010
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp' object='libllvmsdag_la-ScheduleDAGFast.lo' libtool=yes @AMDEPBACKSLASH@
3026
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetSubtarget.cpp' object='TargetSubtarget.lo' libtool=yes @AMDEPBACKSLASH@
4011 3027
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4012
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-ScheduleDAGFast.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
3028
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetSubtarget.lo `test -f 'llvm/lib/Target/TargetSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetSubtarget.cpp
4013 3029
 
4014
-libllvmsdag_la-ScheduleDAGList.lo: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
4015
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-ScheduleDAGList.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-ScheduleDAGList.Tpo -c -o libllvmsdag_la-ScheduleDAGList.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
4016
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-ScheduleDAGList.Tpo $(DEPDIR)/libllvmsdag_la-ScheduleDAGList.Plo
3030
+Execution.lo: llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
3031
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Execution.lo -MD -MP -MF $(DEPDIR)/Execution.Tpo -c -o Execution.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
3032
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Execution.Tpo $(DEPDIR)/Execution.Plo
4017 3033
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4018
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp' object='libllvmsdag_la-ScheduleDAGList.lo' libtool=yes @AMDEPBACKSLASH@
3034
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/Interpreter/Execution.cpp' object='Execution.lo' libtool=yes @AMDEPBACKSLASH@
4019 3035
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4020
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-ScheduleDAGList.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
3036
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Execution.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
4021 3037
 
4022
-libllvmsdag_la-ScheduleDAGRRList.lo: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
4023
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-ScheduleDAGRRList.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-ScheduleDAGRRList.Tpo -c -o libllvmsdag_la-ScheduleDAGRRList.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
4024
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-ScheduleDAGRRList.Tpo $(DEPDIR)/libllvmsdag_la-ScheduleDAGRRList.Plo
3038
+ExternalFunctions.lo: llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
3039
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ExternalFunctions.lo -MD -MP -MF $(DEPDIR)/ExternalFunctions.Tpo -c -o ExternalFunctions.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
3040
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ExternalFunctions.Tpo $(DEPDIR)/ExternalFunctions.Plo
4025 3041
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4026
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp' object='libllvmsdag_la-ScheduleDAGRRList.lo' libtool=yes @AMDEPBACKSLASH@
3042
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp' object='ExternalFunctions.lo' libtool=yes @AMDEPBACKSLASH@
4027 3043
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4028
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-ScheduleDAGRRList.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
3044
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ExternalFunctions.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
4029 3045
 
4030
-libllvmsdag_la-ScheduleDAGSDNodes.lo: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
4031
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-ScheduleDAGSDNodes.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-ScheduleDAGSDNodes.Tpo -c -o libllvmsdag_la-ScheduleDAGSDNodes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
4032
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-ScheduleDAGSDNodes.Tpo $(DEPDIR)/libllvmsdag_la-ScheduleDAGSDNodes.Plo
3046
+Interpreter.lo: llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
3047
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Interpreter.lo -MD -MP -MF $(DEPDIR)/Interpreter.Tpo -c -o Interpreter.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
3048
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Interpreter.Tpo $(DEPDIR)/Interpreter.Plo
4033 3049
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4034
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp' object='libllvmsdag_la-ScheduleDAGSDNodes.lo' libtool=yes @AMDEPBACKSLASH@
3050
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp' object='Interpreter.lo' libtool=yes @AMDEPBACKSLASH@
4035 3051
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4036
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-ScheduleDAGSDNodes.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
3052
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Interpreter.lo `test -f 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
4037 3053
 
4038
-libllvmsdag_la-SelectionDAG.lo: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
4039
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-SelectionDAG.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-SelectionDAG.Tpo -c -o libllvmsdag_la-SelectionDAG.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
4040
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-SelectionDAG.Tpo $(DEPDIR)/libllvmsdag_la-SelectionDAG.Plo
3054
+ELFWriter.lo: llvm/lib/CodeGen/ELFWriter.cpp
3055
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ELFWriter.lo -MD -MP -MF $(DEPDIR)/ELFWriter.Tpo -c -o ELFWriter.lo `test -f 'llvm/lib/CodeGen/ELFWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFWriter.cpp
3056
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ELFWriter.Tpo $(DEPDIR)/ELFWriter.Plo
4041 3057
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4042
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp' object='libllvmsdag_la-SelectionDAG.lo' libtool=yes @AMDEPBACKSLASH@
3058
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ELFWriter.cpp' object='ELFWriter.lo' libtool=yes @AMDEPBACKSLASH@
4043 3059
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4044
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-SelectionDAG.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
3060
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ELFWriter.lo `test -f 'llvm/lib/CodeGen/ELFWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ELFWriter.cpp
4045 3061
 
4046
-libllvmsdag_la-SelectionDAGBuilder.lo: llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
4047
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-SelectionDAGBuilder.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-SelectionDAGBuilder.Tpo -c -o libllvmsdag_la-SelectionDAGBuilder.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
4048
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-SelectionDAGBuilder.Tpo $(DEPDIR)/libllvmsdag_la-SelectionDAGBuilder.Plo
3062
+MachineFunction.lo: llvm/lib/CodeGen/MachineFunction.cpp
3063
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MachineFunction.lo -MD -MP -MF $(DEPDIR)/MachineFunction.Tpo -c -o MachineFunction.lo `test -f 'llvm/lib/CodeGen/MachineFunction.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunction.cpp
3064
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MachineFunction.Tpo $(DEPDIR)/MachineFunction.Plo
4049 3065
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4050
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp' object='libllvmsdag_la-SelectionDAGBuilder.lo' libtool=yes @AMDEPBACKSLASH@
3066
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineFunction.cpp' object='MachineFunction.lo' libtool=yes @AMDEPBACKSLASH@
4051 3067
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4052
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-SelectionDAGBuilder.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
3068
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MachineFunction.lo `test -f 'llvm/lib/CodeGen/MachineFunction.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineFunction.cpp
4053 3069
 
4054
-libllvmsdag_la-SelectionDAGISel.lo: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
4055
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-SelectionDAGISel.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-SelectionDAGISel.Tpo -c -o libllvmsdag_la-SelectionDAGISel.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
4056
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-SelectionDAGISel.Tpo $(DEPDIR)/libllvmsdag_la-SelectionDAGISel.Plo
3070
+MachineInstr.lo: llvm/lib/CodeGen/MachineInstr.cpp
3071
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MachineInstr.lo -MD -MP -MF $(DEPDIR)/MachineInstr.Tpo -c -o MachineInstr.lo `test -f 'llvm/lib/CodeGen/MachineInstr.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineInstr.cpp
3072
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MachineInstr.Tpo $(DEPDIR)/MachineInstr.Plo
4057 3073
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4058
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp' object='libllvmsdag_la-SelectionDAGISel.lo' libtool=yes @AMDEPBACKSLASH@
3074
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineInstr.cpp' object='MachineInstr.lo' libtool=yes @AMDEPBACKSLASH@
4059 3075
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4060
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-SelectionDAGISel.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
3076
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MachineInstr.lo `test -f 'llvm/lib/CodeGen/MachineInstr.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineInstr.cpp
4061 3077
 
4062
-libllvmsdag_la-SelectionDAGPrinter.lo: llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
4063
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-SelectionDAGPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-SelectionDAGPrinter.Tpo -c -o libllvmsdag_la-SelectionDAGPrinter.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
4064
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-SelectionDAGPrinter.Tpo $(DEPDIR)/libllvmsdag_la-SelectionDAGPrinter.Plo
3078
+MachineModuleInfo.lo: llvm/lib/CodeGen/MachineModuleInfo.cpp
3079
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MachineModuleInfo.lo -MD -MP -MF $(DEPDIR)/MachineModuleInfo.Tpo -c -o MachineModuleInfo.lo `test -f 'llvm/lib/CodeGen/MachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineModuleInfo.cpp
3080
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MachineModuleInfo.Tpo $(DEPDIR)/MachineModuleInfo.Plo
4065 3081
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4066
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp' object='libllvmsdag_la-SelectionDAGPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3082
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineModuleInfo.cpp' object='MachineModuleInfo.lo' libtool=yes @AMDEPBACKSLASH@
4067 3083
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4068
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-SelectionDAGPrinter.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
3084
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MachineModuleInfo.lo `test -f 'llvm/lib/CodeGen/MachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineModuleInfo.cpp
4069 3085
 
4070
-libllvmsdag_la-TargetLowering.lo: llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
4071
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-TargetLowering.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-TargetLowering.Tpo -c -o libllvmsdag_la-TargetLowering.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
4072
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-TargetLowering.Tpo $(DEPDIR)/libllvmsdag_la-TargetLowering.Plo
3086
+ExecutionEngine.lo: llvm/lib/ExecutionEngine/ExecutionEngine.cpp
3087
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ExecutionEngine.lo -MD -MP -MF $(DEPDIR)/ExecutionEngine.Tpo -c -o ExecutionEngine.lo `test -f 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/ExecutionEngine.cpp
3088
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ExecutionEngine.Tpo $(DEPDIR)/ExecutionEngine.Plo
4073 3089
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4074
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp' object='libllvmsdag_la-TargetLowering.lo' libtool=yes @AMDEPBACKSLASH@
3090
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/ExecutionEngine.cpp' object='ExecutionEngine.lo' libtool=yes @AMDEPBACKSLASH@
4075 3091
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4076
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-TargetLowering.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
3092
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ExecutionEngine.lo `test -f 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/ExecutionEngine.cpp
4077 3093
 
4078
-libllvmsdag_la-DwarfWriter.lo: llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp
4079
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-DwarfWriter.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-DwarfWriter.Tpo -c -o libllvmsdag_la-DwarfWriter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp
4080
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-DwarfWriter.Tpo $(DEPDIR)/libllvmsdag_la-DwarfWriter.Plo
3094
+Intercept.lo: llvm/lib/ExecutionEngine/JIT/Intercept.cpp
3095
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Intercept.lo -MD -MP -MF $(DEPDIR)/Intercept.Tpo -c -o Intercept.lo `test -f 'llvm/lib/ExecutionEngine/JIT/Intercept.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/Intercept.cpp
3096
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Intercept.Tpo $(DEPDIR)/Intercept.Plo
4081 3097
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4082
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp' object='libllvmsdag_la-DwarfWriter.lo' libtool=yes @AMDEPBACKSLASH@
3098
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/Intercept.cpp' object='Intercept.lo' libtool=yes @AMDEPBACKSLASH@
4083 3099
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4084
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-DwarfWriter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp
3100
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Intercept.lo `test -f 'llvm/lib/ExecutionEngine/JIT/Intercept.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/Intercept.cpp
4085 3101
 
4086
-libllvmsdag_la-DwarfDebug.lo: llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
4087
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-DwarfDebug.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-DwarfDebug.Tpo -c -o libllvmsdag_la-DwarfDebug.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
4088
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-DwarfDebug.Tpo $(DEPDIR)/libllvmsdag_la-DwarfDebug.Plo
3102
+JIT.lo: llvm/lib/ExecutionEngine/JIT/JIT.cpp
3103
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT JIT.lo -MD -MP -MF $(DEPDIR)/JIT.Tpo -c -o JIT.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JIT.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JIT.cpp
3104
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/JIT.Tpo $(DEPDIR)/JIT.Plo
4089 3105
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4090
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp' object='libllvmsdag_la-DwarfDebug.lo' libtool=yes @AMDEPBACKSLASH@
3106
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JIT.cpp' object='JIT.lo' libtool=yes @AMDEPBACKSLASH@
4091 3107
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4092
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-DwarfDebug.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
3108
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o JIT.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JIT.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JIT.cpp
4093 3109
 
4094
-libllvmsdag_la-DwarfException.lo: llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
4095
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-DwarfException.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-DwarfException.Tpo -c -o libllvmsdag_la-DwarfException.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
4096
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-DwarfException.Tpo $(DEPDIR)/libllvmsdag_la-DwarfException.Plo
3110
+JITDebugRegisterer.lo: llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp
3111
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT JITDebugRegisterer.lo -MD -MP -MF $(DEPDIR)/JITDebugRegisterer.Tpo -c -o JITDebugRegisterer.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp
3112
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/JITDebugRegisterer.Tpo $(DEPDIR)/JITDebugRegisterer.Plo
4097 3113
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4098
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp' object='libllvmsdag_la-DwarfException.lo' libtool=yes @AMDEPBACKSLASH@
3114
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp' object='JITDebugRegisterer.lo' libtool=yes @AMDEPBACKSLASH@
4099 3115
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4100
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-DwarfException.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
3116
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o JITDebugRegisterer.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp
4101 3117
 
4102
-libllvmsdag_la-DwarfLabel.lo: llvm/lib/CodeGen/AsmPrinter/DwarfLabel.cpp
4103
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-DwarfLabel.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-DwarfLabel.Tpo -c -o libllvmsdag_la-DwarfLabel.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfLabel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfLabel.cpp
4104
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-DwarfLabel.Tpo $(DEPDIR)/libllvmsdag_la-DwarfLabel.Plo
3118
+JITDwarfEmitter.lo: llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp
3119
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT JITDwarfEmitter.lo -MD -MP -MF $(DEPDIR)/JITDwarfEmitter.Tpo -c -o JITDwarfEmitter.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp
3120
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/JITDwarfEmitter.Tpo $(DEPDIR)/JITDwarfEmitter.Plo
4105 3121
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4106
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/DwarfLabel.cpp' object='libllvmsdag_la-DwarfLabel.lo' libtool=yes @AMDEPBACKSLASH@
3122
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp' object='JITDwarfEmitter.lo' libtool=yes @AMDEPBACKSLASH@
4107 3123
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4108
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-DwarfLabel.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfLabel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfLabel.cpp
3124
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o JITDwarfEmitter.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp
4109 3125
 
4110
-libllvmsdag_la-DwarfPrinter.lo: llvm/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
4111
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-DwarfPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-DwarfPrinter.Tpo -c -o libllvmsdag_la-DwarfPrinter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
4112
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-DwarfPrinter.Tpo $(DEPDIR)/libllvmsdag_la-DwarfPrinter.Plo
3126
+JITEmitter.lo: llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
3127
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT JITEmitter.lo -MD -MP -MF $(DEPDIR)/JITEmitter.Tpo -c -o JITEmitter.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
3128
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/JITEmitter.Tpo $(DEPDIR)/JITEmitter.Plo
4113 3129
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4114
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp' object='libllvmsdag_la-DwarfPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3130
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp' object='JITEmitter.lo' libtool=yes @AMDEPBACKSLASH@
4115 3131
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4116
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-DwarfPrinter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
3132
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o JITEmitter.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
4117 3133
 
4118
-libllvmsdag_la-DIE.lo: llvm/lib/CodeGen/AsmPrinter/DIE.cpp
4119
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-DIE.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-DIE.Tpo -c -o libllvmsdag_la-DIE.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DIE.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DIE.cpp
4120
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-DIE.Tpo $(DEPDIR)/libllvmsdag_la-DIE.Plo
3134
+JITMemoryManager.lo: llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
3135
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT JITMemoryManager.lo -MD -MP -MF $(DEPDIR)/JITMemoryManager.Tpo -c -o JITMemoryManager.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
3136
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/JITMemoryManager.Tpo $(DEPDIR)/JITMemoryManager.Plo
4121 3137
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4122
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/DIE.cpp' object='libllvmsdag_la-DIE.lo' libtool=yes @AMDEPBACKSLASH@
3138
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp' object='JITMemoryManager.lo' libtool=yes @AMDEPBACKSLASH@
4123 3139
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4124
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-DIE.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/DIE.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/DIE.cpp
3140
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o JITMemoryManager.lo `test -f 'llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
4125 3141
 
4126
-libllvmsdag_la-AsmPrinter.lo: llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
4127
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsdag_la-AsmPrinter.lo -MD -MP -MF $(DEPDIR)/libllvmsdag_la-AsmPrinter.Tpo -c -o libllvmsdag_la-AsmPrinter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
4128
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsdag_la-AsmPrinter.Tpo $(DEPDIR)/libllvmsdag_la-AsmPrinter.Plo
3142
+OProfileJITEventListener.lo: llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp
3143
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT OProfileJITEventListener.lo -MD -MP -MF $(DEPDIR)/OProfileJITEventListener.Tpo -c -o OProfileJITEventListener.lo `test -f 'llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp
3144
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/OProfileJITEventListener.Tpo $(DEPDIR)/OProfileJITEventListener.Plo
4129 3145
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4130
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp' object='libllvmsdag_la-AsmPrinter.lo' libtool=yes @AMDEPBACKSLASH@
3146
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp' object='OProfileJITEventListener.lo' libtool=yes @AMDEPBACKSLASH@
4131 3147
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4132
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsdag_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsdag_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsdag_la-AsmPrinter.lo `test -f 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
3148
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o OProfileJITEventListener.lo `test -f 'llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp
4133 3149
 
4134
-libllvmsupport_la-APFloat.lo: llvm/lib/Support/APFloat.cpp
4135
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-APFloat.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-APFloat.Tpo -c -o libllvmsupport_la-APFloat.lo `test -f 'llvm/lib/Support/APFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APFloat.cpp
4136
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-APFloat.Tpo $(DEPDIR)/libllvmsupport_la-APFloat.Plo
3150
+TargetSelect.lo: llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
3151
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetSelect.lo -MD -MP -MF $(DEPDIR)/TargetSelect.Tpo -c -o TargetSelect.lo `test -f 'llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
3152
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetSelect.Tpo $(DEPDIR)/TargetSelect.Plo
4137 3153
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4138
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/APFloat.cpp' object='libllvmsupport_la-APFloat.lo' libtool=yes @AMDEPBACKSLASH@
3154
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp' object='TargetSelect.lo' libtool=yes @AMDEPBACKSLASH@
4139 3155
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4140
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-APFloat.lo `test -f 'llvm/lib/Support/APFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APFloat.cpp
3156
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetSelect.lo `test -f 'llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp' || echo '$(srcdir)/'`llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
4141 3157
 
4142
-libllvmsupport_la-APInt.lo: llvm/lib/Support/APInt.cpp
4143
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-APInt.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-APInt.Tpo -c -o libllvmsupport_la-APInt.lo `test -f 'llvm/lib/Support/APInt.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APInt.cpp
4144
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-APInt.Tpo $(DEPDIR)/libllvmsupport_la-APInt.Plo
3158
+MCAsmInfo.lo: llvm/lib/MC/MCAsmInfo.cpp
3159
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MCAsmInfo.lo -MD -MP -MF $(DEPDIR)/MCAsmInfo.Tpo -c -o MCAsmInfo.lo `test -f 'llvm/lib/MC/MCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfo.cpp
3160
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MCAsmInfo.Tpo $(DEPDIR)/MCAsmInfo.Plo
4145 3161
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4146
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/APInt.cpp' object='libllvmsupport_la-APInt.lo' libtool=yes @AMDEPBACKSLASH@
3162
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmInfo.cpp' object='MCAsmInfo.lo' libtool=yes @AMDEPBACKSLASH@
4147 3163
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4148
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-APInt.lo `test -f 'llvm/lib/Support/APInt.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APInt.cpp
3164
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MCAsmInfo.lo `test -f 'llvm/lib/MC/MCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfo.cpp
4149 3165
 
4150
-libllvmsupport_la-APSInt.lo: llvm/lib/Support/APSInt.cpp
4151
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-APSInt.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-APSInt.Tpo -c -o libllvmsupport_la-APSInt.lo `test -f 'llvm/lib/Support/APSInt.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APSInt.cpp
4152
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-APSInt.Tpo $(DEPDIR)/libllvmsupport_la-APSInt.Plo
3166
+APFloat.lo: llvm/lib/Support/APFloat.cpp
3167
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT APFloat.lo -MD -MP -MF $(DEPDIR)/APFloat.Tpo -c -o APFloat.lo `test -f 'llvm/lib/Support/APFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APFloat.cpp
3168
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/APFloat.Tpo $(DEPDIR)/APFloat.Plo
4153 3169
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4154
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/APSInt.cpp' object='libllvmsupport_la-APSInt.lo' libtool=yes @AMDEPBACKSLASH@
3170
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/APFloat.cpp' object='APFloat.lo' libtool=yes @AMDEPBACKSLASH@
4155 3171
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4156
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-APSInt.lo `test -f 'llvm/lib/Support/APSInt.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APSInt.cpp
3172
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o APFloat.lo `test -f 'llvm/lib/Support/APFloat.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APFloat.cpp
4157 3173
 
4158
-libllvmsupport_la-Allocator.lo: llvm/lib/Support/Allocator.cpp
4159
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-Allocator.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-Allocator.Tpo -c -o libllvmsupport_la-Allocator.lo `test -f 'llvm/lib/Support/Allocator.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Allocator.cpp
4160
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-Allocator.Tpo $(DEPDIR)/libllvmsupport_la-Allocator.Plo
3174
+APInt.lo: llvm/lib/Support/APInt.cpp
3175
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT APInt.lo -MD -MP -MF $(DEPDIR)/APInt.Tpo -c -o APInt.lo `test -f 'llvm/lib/Support/APInt.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APInt.cpp
3176
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/APInt.Tpo $(DEPDIR)/APInt.Plo
4161 3177
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4162
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Allocator.cpp' object='libllvmsupport_la-Allocator.lo' libtool=yes @AMDEPBACKSLASH@
3178
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/APInt.cpp' object='APInt.lo' libtool=yes @AMDEPBACKSLASH@
4163 3179
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4164
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-Allocator.lo `test -f 'llvm/lib/Support/Allocator.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Allocator.cpp
3180
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o APInt.lo `test -f 'llvm/lib/Support/APInt.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APInt.cpp
4165 3181
 
4166
-libllvmsupport_la-CommandLine.lo: llvm/lib/Support/CommandLine.cpp
4167
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-CommandLine.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-CommandLine.Tpo -c -o libllvmsupport_la-CommandLine.lo `test -f 'llvm/lib/Support/CommandLine.cpp' || echo '$(srcdir)/'`llvm/lib/Support/CommandLine.cpp
4168
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-CommandLine.Tpo $(DEPDIR)/libllvmsupport_la-CommandLine.Plo
3182
+Allocator.lo: llvm/lib/Support/Allocator.cpp
3183
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Allocator.lo -MD -MP -MF $(DEPDIR)/Allocator.Tpo -c -o Allocator.lo `test -f 'llvm/lib/Support/Allocator.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Allocator.cpp
3184
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Allocator.Tpo $(DEPDIR)/Allocator.Plo
4169 3185
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4170
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/CommandLine.cpp' object='libllvmsupport_la-CommandLine.lo' libtool=yes @AMDEPBACKSLASH@
3186
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Allocator.cpp' object='Allocator.lo' libtool=yes @AMDEPBACKSLASH@
4171 3187
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4172
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-CommandLine.lo `test -f 'llvm/lib/Support/CommandLine.cpp' || echo '$(srcdir)/'`llvm/lib/Support/CommandLine.cpp
3188
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Allocator.lo `test -f 'llvm/lib/Support/Allocator.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Allocator.cpp
4173 3189
 
4174
-libllvmsupport_la-ConstantRange.lo: llvm/lib/Support/ConstantRange.cpp
4175
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-ConstantRange.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-ConstantRange.Tpo -c -o libllvmsupport_la-ConstantRange.lo `test -f 'llvm/lib/Support/ConstantRange.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ConstantRange.cpp
4176
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-ConstantRange.Tpo $(DEPDIR)/libllvmsupport_la-ConstantRange.Plo
3190
+CommandLine.lo: llvm/lib/Support/CommandLine.cpp
3191
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT CommandLine.lo -MD -MP -MF $(DEPDIR)/CommandLine.Tpo -c -o CommandLine.lo `test -f 'llvm/lib/Support/CommandLine.cpp' || echo '$(srcdir)/'`llvm/lib/Support/CommandLine.cpp
3192
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/CommandLine.Tpo $(DEPDIR)/CommandLine.Plo
4177 3193
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4178
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/ConstantRange.cpp' object='libllvmsupport_la-ConstantRange.lo' libtool=yes @AMDEPBACKSLASH@
3194
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/CommandLine.cpp' object='CommandLine.lo' libtool=yes @AMDEPBACKSLASH@
4179 3195
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4180
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-ConstantRange.lo `test -f 'llvm/lib/Support/ConstantRange.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ConstantRange.cpp
3196
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o CommandLine.lo `test -f 'llvm/lib/Support/CommandLine.cpp' || echo '$(srcdir)/'`llvm/lib/Support/CommandLine.cpp
4181 3197
 
4182
-libllvmsupport_la-Debug.lo: llvm/lib/Support/Debug.cpp
4183
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-Debug.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-Debug.Tpo -c -o libllvmsupport_la-Debug.lo `test -f 'llvm/lib/Support/Debug.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Debug.cpp
4184
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-Debug.Tpo $(DEPDIR)/libllvmsupport_la-Debug.Plo
3198
+ConstantRange.lo: llvm/lib/Support/ConstantRange.cpp
3199
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ConstantRange.lo -MD -MP -MF $(DEPDIR)/ConstantRange.Tpo -c -o ConstantRange.lo `test -f 'llvm/lib/Support/ConstantRange.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ConstantRange.cpp
3200
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ConstantRange.Tpo $(DEPDIR)/ConstantRange.Plo
4185 3201
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4186
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Debug.cpp' object='libllvmsupport_la-Debug.lo' libtool=yes @AMDEPBACKSLASH@
3202
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/ConstantRange.cpp' object='ConstantRange.lo' libtool=yes @AMDEPBACKSLASH@
4187 3203
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4188
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-Debug.lo `test -f 'llvm/lib/Support/Debug.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Debug.cpp
3204
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ConstantRange.lo `test -f 'llvm/lib/Support/ConstantRange.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ConstantRange.cpp
4189 3205
 
4190
-libllvmsupport_la-Dwarf.lo: llvm/lib/Support/Dwarf.cpp
4191
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-Dwarf.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-Dwarf.Tpo -c -o libllvmsupport_la-Dwarf.lo `test -f 'llvm/lib/Support/Dwarf.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Dwarf.cpp
4192
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-Dwarf.Tpo $(DEPDIR)/libllvmsupport_la-Dwarf.Plo
3206
+Debug.lo: llvm/lib/Support/Debug.cpp
3207
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Debug.lo -MD -MP -MF $(DEPDIR)/Debug.Tpo -c -o Debug.lo `test -f 'llvm/lib/Support/Debug.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Debug.cpp
3208
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Debug.Tpo $(DEPDIR)/Debug.Plo
4193 3209
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4194
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Dwarf.cpp' object='libllvmsupport_la-Dwarf.lo' libtool=yes @AMDEPBACKSLASH@
3210
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Debug.cpp' object='Debug.lo' libtool=yes @AMDEPBACKSLASH@
4195 3211
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4196
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-Dwarf.lo `test -f 'llvm/lib/Support/Dwarf.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Dwarf.cpp
3212
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Debug.lo `test -f 'llvm/lib/Support/Debug.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Debug.cpp
4197 3213
 
4198
-libllvmsupport_la-ErrorHandling.lo: llvm/lib/Support/ErrorHandling.cpp
4199
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-ErrorHandling.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-ErrorHandling.Tpo -c -o libllvmsupport_la-ErrorHandling.lo `test -f 'llvm/lib/Support/ErrorHandling.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ErrorHandling.cpp
4200
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-ErrorHandling.Tpo $(DEPDIR)/libllvmsupport_la-ErrorHandling.Plo
3214
+Dwarf.lo: llvm/lib/Support/Dwarf.cpp
3215
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Dwarf.lo -MD -MP -MF $(DEPDIR)/Dwarf.Tpo -c -o Dwarf.lo `test -f 'llvm/lib/Support/Dwarf.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Dwarf.cpp
3216
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Dwarf.Tpo $(DEPDIR)/Dwarf.Plo
4201 3217
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4202
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/ErrorHandling.cpp' object='libllvmsupport_la-ErrorHandling.lo' libtool=yes @AMDEPBACKSLASH@
3218
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Dwarf.cpp' object='Dwarf.lo' libtool=yes @AMDEPBACKSLASH@
4203 3219
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4204
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-ErrorHandling.lo `test -f 'llvm/lib/Support/ErrorHandling.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ErrorHandling.cpp
3220
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Dwarf.lo `test -f 'llvm/lib/Support/Dwarf.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Dwarf.cpp
4205 3221
 
4206
-libllvmsupport_la-FileUtilities.lo: llvm/lib/Support/FileUtilities.cpp
4207
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-FileUtilities.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-FileUtilities.Tpo -c -o libllvmsupport_la-FileUtilities.lo `test -f 'llvm/lib/Support/FileUtilities.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FileUtilities.cpp
4208
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-FileUtilities.Tpo $(DEPDIR)/libllvmsupport_la-FileUtilities.Plo
3222
+ErrorHandling.lo: llvm/lib/Support/ErrorHandling.cpp
3223
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ErrorHandling.lo -MD -MP -MF $(DEPDIR)/ErrorHandling.Tpo -c -o ErrorHandling.lo `test -f 'llvm/lib/Support/ErrorHandling.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ErrorHandling.cpp
3224
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ErrorHandling.Tpo $(DEPDIR)/ErrorHandling.Plo
4209 3225
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4210
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/FileUtilities.cpp' object='libllvmsupport_la-FileUtilities.lo' libtool=yes @AMDEPBACKSLASH@
3226
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/ErrorHandling.cpp' object='ErrorHandling.lo' libtool=yes @AMDEPBACKSLASH@
4211 3227
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4212
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-FileUtilities.lo `test -f 'llvm/lib/Support/FileUtilities.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FileUtilities.cpp
3228
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ErrorHandling.lo `test -f 'llvm/lib/Support/ErrorHandling.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ErrorHandling.cpp
4213 3229
 
4214
-libllvmsupport_la-FoldingSet.lo: llvm/lib/Support/FoldingSet.cpp
4215
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-FoldingSet.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-FoldingSet.Tpo -c -o libllvmsupport_la-FoldingSet.lo `test -f 'llvm/lib/Support/FoldingSet.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FoldingSet.cpp
4216
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-FoldingSet.Tpo $(DEPDIR)/libllvmsupport_la-FoldingSet.Plo
3230
+FoldingSet.lo: llvm/lib/Support/FoldingSet.cpp
3231
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FoldingSet.lo -MD -MP -MF $(DEPDIR)/FoldingSet.Tpo -c -o FoldingSet.lo `test -f 'llvm/lib/Support/FoldingSet.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FoldingSet.cpp
3232
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/FoldingSet.Tpo $(DEPDIR)/FoldingSet.Plo
4217 3233
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4218
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/FoldingSet.cpp' object='libllvmsupport_la-FoldingSet.lo' libtool=yes @AMDEPBACKSLASH@
3234
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/FoldingSet.cpp' object='FoldingSet.lo' libtool=yes @AMDEPBACKSLASH@
4219 3235
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4220
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-FoldingSet.lo `test -f 'llvm/lib/Support/FoldingSet.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FoldingSet.cpp
3236
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FoldingSet.lo `test -f 'llvm/lib/Support/FoldingSet.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FoldingSet.cpp
4221 3237
 
4222
-libllvmsupport_la-FormattedStream.lo: llvm/lib/Support/FormattedStream.cpp
4223
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-FormattedStream.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-FormattedStream.Tpo -c -o libllvmsupport_la-FormattedStream.lo `test -f 'llvm/lib/Support/FormattedStream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FormattedStream.cpp
4224
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-FormattedStream.Tpo $(DEPDIR)/libllvmsupport_la-FormattedStream.Plo
3238
+FormattedStream.lo: llvm/lib/Support/FormattedStream.cpp
3239
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FormattedStream.lo -MD -MP -MF $(DEPDIR)/FormattedStream.Tpo -c -o FormattedStream.lo `test -f 'llvm/lib/Support/FormattedStream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FormattedStream.cpp
3240
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/FormattedStream.Tpo $(DEPDIR)/FormattedStream.Plo
4225 3241
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4226
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/FormattedStream.cpp' object='libllvmsupport_la-FormattedStream.lo' libtool=yes @AMDEPBACKSLASH@
3242
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/FormattedStream.cpp' object='FormattedStream.lo' libtool=yes @AMDEPBACKSLASH@
4227 3243
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4228
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-FormattedStream.lo `test -f 'llvm/lib/Support/FormattedStream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FormattedStream.cpp
3244
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FormattedStream.lo `test -f 'llvm/lib/Support/FormattedStream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FormattedStream.cpp
4229 3245
 
4230
-libllvmsupport_la-GraphWriter.lo: llvm/lib/Support/GraphWriter.cpp
4231
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-GraphWriter.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-GraphWriter.Tpo -c -o libllvmsupport_la-GraphWriter.lo `test -f 'llvm/lib/Support/GraphWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Support/GraphWriter.cpp
4232
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-GraphWriter.Tpo $(DEPDIR)/libllvmsupport_la-GraphWriter.Plo
3246
+ManagedStatic.lo: llvm/lib/Support/ManagedStatic.cpp
3247
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ManagedStatic.lo -MD -MP -MF $(DEPDIR)/ManagedStatic.Tpo -c -o ManagedStatic.lo `test -f 'llvm/lib/Support/ManagedStatic.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ManagedStatic.cpp
3248
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ManagedStatic.Tpo $(DEPDIR)/ManagedStatic.Plo
4233 3249
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4234
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/GraphWriter.cpp' object='libllvmsupport_la-GraphWriter.lo' libtool=yes @AMDEPBACKSLASH@
3250
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/ManagedStatic.cpp' object='ManagedStatic.lo' libtool=yes @AMDEPBACKSLASH@
4235 3251
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4236
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-GraphWriter.lo `test -f 'llvm/lib/Support/GraphWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Support/GraphWriter.cpp
3252
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ManagedStatic.lo `test -f 'llvm/lib/Support/ManagedStatic.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ManagedStatic.cpp
4237 3253
 
4238
-libllvmsupport_la-IsInf.lo: llvm/lib/Support/IsInf.cpp
4239
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-IsInf.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-IsInf.Tpo -c -o libllvmsupport_la-IsInf.lo `test -f 'llvm/lib/Support/IsInf.cpp' || echo '$(srcdir)/'`llvm/lib/Support/IsInf.cpp
4240
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-IsInf.Tpo $(DEPDIR)/libllvmsupport_la-IsInf.Plo
3254
+MemoryBuffer.lo: llvm/lib/Support/MemoryBuffer.cpp
3255
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MemoryBuffer.lo -MD -MP -MF $(DEPDIR)/MemoryBuffer.Tpo -c -o MemoryBuffer.lo `test -f 'llvm/lib/Support/MemoryBuffer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/MemoryBuffer.cpp
3256
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MemoryBuffer.Tpo $(DEPDIR)/MemoryBuffer.Plo
4241 3257
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4242
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/IsInf.cpp' object='libllvmsupport_la-IsInf.lo' libtool=yes @AMDEPBACKSLASH@
3258
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/MemoryBuffer.cpp' object='MemoryBuffer.lo' libtool=yes @AMDEPBACKSLASH@
4243 3259
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4244
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-IsInf.lo `test -f 'llvm/lib/Support/IsInf.cpp' || echo '$(srcdir)/'`llvm/lib/Support/IsInf.cpp
3260
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MemoryBuffer.lo `test -f 'llvm/lib/Support/MemoryBuffer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/MemoryBuffer.cpp
4245 3261
 
4246
-libllvmsupport_la-IsNAN.lo: llvm/lib/Support/IsNAN.cpp
4247
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-IsNAN.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-IsNAN.Tpo -c -o libllvmsupport_la-IsNAN.lo `test -f 'llvm/lib/Support/IsNAN.cpp' || echo '$(srcdir)/'`llvm/lib/Support/IsNAN.cpp
4248
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-IsNAN.Tpo $(DEPDIR)/libllvmsupport_la-IsNAN.Plo
3262
+PrettyStackTrace.lo: llvm/lib/Support/PrettyStackTrace.cpp
3263
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT PrettyStackTrace.lo -MD -MP -MF $(DEPDIR)/PrettyStackTrace.Tpo -c -o PrettyStackTrace.lo `test -f 'llvm/lib/Support/PrettyStackTrace.cpp' || echo '$(srcdir)/'`llvm/lib/Support/PrettyStackTrace.cpp
3264
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/PrettyStackTrace.Tpo $(DEPDIR)/PrettyStackTrace.Plo
4249 3265
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4250
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/IsNAN.cpp' object='libllvmsupport_la-IsNAN.lo' libtool=yes @AMDEPBACKSLASH@
3266
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/PrettyStackTrace.cpp' object='PrettyStackTrace.lo' libtool=yes @AMDEPBACKSLASH@
4251 3267
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4252
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-IsNAN.lo `test -f 'llvm/lib/Support/IsNAN.cpp' || echo '$(srcdir)/'`llvm/lib/Support/IsNAN.cpp
3268
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o PrettyStackTrace.lo `test -f 'llvm/lib/Support/PrettyStackTrace.cpp' || echo '$(srcdir)/'`llvm/lib/Support/PrettyStackTrace.cpp
4253 3269
 
4254
-libllvmsupport_la-ManagedStatic.lo: llvm/lib/Support/ManagedStatic.cpp
4255
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-ManagedStatic.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-ManagedStatic.Tpo -c -o libllvmsupport_la-ManagedStatic.lo `test -f 'llvm/lib/Support/ManagedStatic.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ManagedStatic.cpp
4256
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-ManagedStatic.Tpo $(DEPDIR)/libllvmsupport_la-ManagedStatic.Plo
3270
+SmallPtrSet.lo: llvm/lib/Support/SmallPtrSet.cpp
3271
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SmallPtrSet.lo -MD -MP -MF $(DEPDIR)/SmallPtrSet.Tpo -c -o SmallPtrSet.lo `test -f 'llvm/lib/Support/SmallPtrSet.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SmallPtrSet.cpp
3272
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SmallPtrSet.Tpo $(DEPDIR)/SmallPtrSet.Plo
4257 3273
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4258
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/ManagedStatic.cpp' object='libllvmsupport_la-ManagedStatic.lo' libtool=yes @AMDEPBACKSLASH@
3274
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/SmallPtrSet.cpp' object='SmallPtrSet.lo' libtool=yes @AMDEPBACKSLASH@
4259 3275
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4260
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-ManagedStatic.lo `test -f 'llvm/lib/Support/ManagedStatic.cpp' || echo '$(srcdir)/'`llvm/lib/Support/ManagedStatic.cpp
3276
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SmallPtrSet.lo `test -f 'llvm/lib/Support/SmallPtrSet.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SmallPtrSet.cpp
4261 3277
 
4262
-libllvmsupport_la-MemoryBuffer.lo: llvm/lib/Support/MemoryBuffer.cpp
4263
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-MemoryBuffer.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-MemoryBuffer.Tpo -c -o libllvmsupport_la-MemoryBuffer.lo `test -f 'llvm/lib/Support/MemoryBuffer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/MemoryBuffer.cpp
4264
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-MemoryBuffer.Tpo $(DEPDIR)/libllvmsupport_la-MemoryBuffer.Plo
3278
+Statistic.lo: llvm/lib/Support/Statistic.cpp
3279
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Statistic.lo -MD -MP -MF $(DEPDIR)/Statistic.Tpo -c -o Statistic.lo `test -f 'llvm/lib/Support/Statistic.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Statistic.cpp
3280
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Statistic.Tpo $(DEPDIR)/Statistic.Plo
4265 3281
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4266
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/MemoryBuffer.cpp' object='libllvmsupport_la-MemoryBuffer.lo' libtool=yes @AMDEPBACKSLASH@
3282
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Statistic.cpp' object='Statistic.lo' libtool=yes @AMDEPBACKSLASH@
4267 3283
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4268
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-MemoryBuffer.lo `test -f 'llvm/lib/Support/MemoryBuffer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/MemoryBuffer.cpp
3284
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Statistic.lo `test -f 'llvm/lib/Support/Statistic.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Statistic.cpp
4269 3285
 
4270
-libllvmsupport_la-PluginLoader.lo: llvm/lib/Support/PluginLoader.cpp
4271
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-PluginLoader.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-PluginLoader.Tpo -c -o libllvmsupport_la-PluginLoader.lo `test -f 'llvm/lib/Support/PluginLoader.cpp' || echo '$(srcdir)/'`llvm/lib/Support/PluginLoader.cpp
4272
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-PluginLoader.Tpo $(DEPDIR)/libllvmsupport_la-PluginLoader.Plo
3286
+StringExtras.lo: llvm/lib/Support/StringExtras.cpp
3287
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringExtras.lo -MD -MP -MF $(DEPDIR)/StringExtras.Tpo -c -o StringExtras.lo `test -f 'llvm/lib/Support/StringExtras.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringExtras.cpp
3288
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/StringExtras.Tpo $(DEPDIR)/StringExtras.Plo
4273 3289
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4274
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/PluginLoader.cpp' object='libllvmsupport_la-PluginLoader.lo' libtool=yes @AMDEPBACKSLASH@
3290
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/StringExtras.cpp' object='StringExtras.lo' libtool=yes @AMDEPBACKSLASH@
4275 3291
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4276
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-PluginLoader.lo `test -f 'llvm/lib/Support/PluginLoader.cpp' || echo '$(srcdir)/'`llvm/lib/Support/PluginLoader.cpp
3292
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringExtras.lo `test -f 'llvm/lib/Support/StringExtras.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringExtras.cpp
4277 3293
 
4278
-libllvmsupport_la-PrettyStackTrace.lo: llvm/lib/Support/PrettyStackTrace.cpp
4279
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-PrettyStackTrace.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-PrettyStackTrace.Tpo -c -o libllvmsupport_la-PrettyStackTrace.lo `test -f 'llvm/lib/Support/PrettyStackTrace.cpp' || echo '$(srcdir)/'`llvm/lib/Support/PrettyStackTrace.cpp
4280
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-PrettyStackTrace.Tpo $(DEPDIR)/libllvmsupport_la-PrettyStackTrace.Plo
3294
+StringMap.lo: llvm/lib/Support/StringMap.cpp
3295
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringMap.lo -MD -MP -MF $(DEPDIR)/StringMap.Tpo -c -o StringMap.lo `test -f 'llvm/lib/Support/StringMap.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringMap.cpp
3296
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/StringMap.Tpo $(DEPDIR)/StringMap.Plo
4281 3297
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4282
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/PrettyStackTrace.cpp' object='libllvmsupport_la-PrettyStackTrace.lo' libtool=yes @AMDEPBACKSLASH@
3298
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/StringMap.cpp' object='StringMap.lo' libtool=yes @AMDEPBACKSLASH@
4283 3299
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4284
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-PrettyStackTrace.lo `test -f 'llvm/lib/Support/PrettyStackTrace.cpp' || echo '$(srcdir)/'`llvm/lib/Support/PrettyStackTrace.cpp
3300
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringMap.lo `test -f 'llvm/lib/Support/StringMap.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringMap.cpp
4285 3301
 
4286
-libllvmsupport_la-SlowOperationInformer.lo: llvm/lib/Support/SlowOperationInformer.cpp
4287
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-SlowOperationInformer.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-SlowOperationInformer.Tpo -c -o libllvmsupport_la-SlowOperationInformer.lo `test -f 'llvm/lib/Support/SlowOperationInformer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SlowOperationInformer.cpp
4288
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-SlowOperationInformer.Tpo $(DEPDIR)/libllvmsupport_la-SlowOperationInformer.Plo
3302
+StringPool.lo: llvm/lib/Support/StringPool.cpp
3303
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringPool.lo -MD -MP -MF $(DEPDIR)/StringPool.Tpo -c -o StringPool.lo `test -f 'llvm/lib/Support/StringPool.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringPool.cpp
3304
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/StringPool.Tpo $(DEPDIR)/StringPool.Plo
4289 3305
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4290
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/SlowOperationInformer.cpp' object='libllvmsupport_la-SlowOperationInformer.lo' libtool=yes @AMDEPBACKSLASH@
3306
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/StringPool.cpp' object='StringPool.lo' libtool=yes @AMDEPBACKSLASH@
4291 3307
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4292
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-SlowOperationInformer.lo `test -f 'llvm/lib/Support/SlowOperationInformer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SlowOperationInformer.cpp
3308
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringPool.lo `test -f 'llvm/lib/Support/StringPool.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringPool.cpp
4293 3309
 
4294
-libllvmsupport_la-SmallPtrSet.lo: llvm/lib/Support/SmallPtrSet.cpp
4295
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-SmallPtrSet.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-SmallPtrSet.Tpo -c -o libllvmsupport_la-SmallPtrSet.lo `test -f 'llvm/lib/Support/SmallPtrSet.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SmallPtrSet.cpp
4296
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-SmallPtrSet.Tpo $(DEPDIR)/libllvmsupport_la-SmallPtrSet.Plo
3310
+TargetRegistry.lo: llvm/lib/Support/TargetRegistry.cpp
3311
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetRegistry.lo -MD -MP -MF $(DEPDIR)/TargetRegistry.Tpo -c -o TargetRegistry.lo `test -f 'llvm/lib/Support/TargetRegistry.cpp' || echo '$(srcdir)/'`llvm/lib/Support/TargetRegistry.cpp
3312
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetRegistry.Tpo $(DEPDIR)/TargetRegistry.Plo
4297 3313
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4298
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/SmallPtrSet.cpp' object='libllvmsupport_la-SmallPtrSet.lo' libtool=yes @AMDEPBACKSLASH@
3314
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/TargetRegistry.cpp' object='TargetRegistry.lo' libtool=yes @AMDEPBACKSLASH@
4299 3315
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4300
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-SmallPtrSet.lo `test -f 'llvm/lib/Support/SmallPtrSet.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SmallPtrSet.cpp
3316
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetRegistry.lo `test -f 'llvm/lib/Support/TargetRegistry.cpp' || echo '$(srcdir)/'`llvm/lib/Support/TargetRegistry.cpp
4301 3317
 
4302
-libllvmsupport_la-SourceMgr.lo: llvm/lib/Support/SourceMgr.cpp
4303
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-SourceMgr.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-SourceMgr.Tpo -c -o libllvmsupport_la-SourceMgr.lo `test -f 'llvm/lib/Support/SourceMgr.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SourceMgr.cpp
4304
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-SourceMgr.Tpo $(DEPDIR)/libllvmsupport_la-SourceMgr.Plo
3318
+Timer.lo: llvm/lib/Support/Timer.cpp
3319
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Timer.lo -MD -MP -MF $(DEPDIR)/Timer.Tpo -c -o Timer.lo `test -f 'llvm/lib/Support/Timer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Timer.cpp
3320
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Timer.Tpo $(DEPDIR)/Timer.Plo
4305 3321
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4306
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/SourceMgr.cpp' object='libllvmsupport_la-SourceMgr.lo' libtool=yes @AMDEPBACKSLASH@
3322
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Timer.cpp' object='Timer.lo' libtool=yes @AMDEPBACKSLASH@
4307 3323
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4308
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-SourceMgr.lo `test -f 'llvm/lib/Support/SourceMgr.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SourceMgr.cpp
3324
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Timer.lo `test -f 'llvm/lib/Support/Timer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Timer.cpp
4309 3325
 
4310
-libllvmsupport_la-Statistic.lo: llvm/lib/Support/Statistic.cpp
4311
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-Statistic.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-Statistic.Tpo -c -o libllvmsupport_la-Statistic.lo `test -f 'llvm/lib/Support/Statistic.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Statistic.cpp
4312
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-Statistic.Tpo $(DEPDIR)/libllvmsupport_la-Statistic.Plo
3326
+Triple.lo: llvm/lib/Support/Triple.cpp
3327
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Triple.lo -MD -MP -MF $(DEPDIR)/Triple.Tpo -c -o Triple.lo `test -f 'llvm/lib/Support/Triple.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Triple.cpp
3328
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Triple.Tpo $(DEPDIR)/Triple.Plo
4313 3329
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4314
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Statistic.cpp' object='libllvmsupport_la-Statistic.lo' libtool=yes @AMDEPBACKSLASH@
3330
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Triple.cpp' object='Triple.lo' libtool=yes @AMDEPBACKSLASH@
4315 3331
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4316
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-Statistic.lo `test -f 'llvm/lib/Support/Statistic.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Statistic.cpp
3332
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Triple.lo `test -f 'llvm/lib/Support/Triple.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Triple.cpp
4317 3333
 
4318
-libllvmsupport_la-StringExtras.lo: llvm/lib/Support/StringExtras.cpp
4319
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-StringExtras.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-StringExtras.Tpo -c -o libllvmsupport_la-StringExtras.lo `test -f 'llvm/lib/Support/StringExtras.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringExtras.cpp
4320
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-StringExtras.Tpo $(DEPDIR)/libllvmsupport_la-StringExtras.Plo
3334
+Twine.lo: llvm/lib/Support/Twine.cpp
3335
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Twine.lo -MD -MP -MF $(DEPDIR)/Twine.Tpo -c -o Twine.lo `test -f 'llvm/lib/Support/Twine.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Twine.cpp
3336
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Twine.Tpo $(DEPDIR)/Twine.Plo
4321 3337
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4322
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/StringExtras.cpp' object='libllvmsupport_la-StringExtras.lo' libtool=yes @AMDEPBACKSLASH@
3338
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Twine.cpp' object='Twine.lo' libtool=yes @AMDEPBACKSLASH@
4323 3339
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4324
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-StringExtras.lo `test -f 'llvm/lib/Support/StringExtras.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringExtras.cpp
3340
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Twine.lo `test -f 'llvm/lib/Support/Twine.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Twine.cpp
4325 3341
 
4326
-libllvmsupport_la-StringMap.lo: llvm/lib/Support/StringMap.cpp
4327
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-StringMap.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-StringMap.Tpo -c -o libllvmsupport_la-StringMap.lo `test -f 'llvm/lib/Support/StringMap.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringMap.cpp
4328
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-StringMap.Tpo $(DEPDIR)/libllvmsupport_la-StringMap.Plo
3342
+raw_ostream.lo: llvm/lib/Support/raw_ostream.cpp
3343
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raw_ostream.lo -MD -MP -MF $(DEPDIR)/raw_ostream.Tpo -c -o raw_ostream.lo `test -f 'llvm/lib/Support/raw_ostream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/raw_ostream.cpp
3344
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/raw_ostream.Tpo $(DEPDIR)/raw_ostream.Plo
4329 3345
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4330
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/StringMap.cpp' object='libllvmsupport_la-StringMap.lo' libtool=yes @AMDEPBACKSLASH@
3346
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/raw_ostream.cpp' object='raw_ostream.lo' libtool=yes @AMDEPBACKSLASH@
4331 3347
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4332
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-StringMap.lo `test -f 'llvm/lib/Support/StringMap.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringMap.cpp
3348
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raw_ostream.lo `test -f 'llvm/lib/Support/raw_ostream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/raw_ostream.cpp
4333 3349
 
4334
-libllvmsupport_la-StringPool.lo: llvm/lib/Support/StringPool.cpp
4335
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-StringPool.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-StringPool.Tpo -c -o libllvmsupport_la-StringPool.lo `test -f 'llvm/lib/Support/StringPool.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringPool.cpp
4336
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-StringPool.Tpo $(DEPDIR)/libllvmsupport_la-StringPool.Plo
3350
+SubtargetFeature.lo: llvm/lib/Target/SubtargetFeature.cpp
3351
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SubtargetFeature.lo -MD -MP -MF $(DEPDIR)/SubtargetFeature.Tpo -c -o SubtargetFeature.lo `test -f 'llvm/lib/Target/SubtargetFeature.cpp' || echo '$(srcdir)/'`llvm/lib/Target/SubtargetFeature.cpp
3352
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SubtargetFeature.Tpo $(DEPDIR)/SubtargetFeature.Plo
4337 3353
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4338
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/StringPool.cpp' object='libllvmsupport_la-StringPool.lo' libtool=yes @AMDEPBACKSLASH@
3354
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/SubtargetFeature.cpp' object='SubtargetFeature.lo' libtool=yes @AMDEPBACKSLASH@
4339 3355
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4340
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-StringPool.lo `test -f 'llvm/lib/Support/StringPool.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringPool.cpp
3356
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SubtargetFeature.lo `test -f 'llvm/lib/Target/SubtargetFeature.cpp' || echo '$(srcdir)/'`llvm/lib/Target/SubtargetFeature.cpp
4341 3357
 
4342
-libllvmsupport_la-StringRef.lo: llvm/lib/Support/StringRef.cpp
4343
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-StringRef.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-StringRef.Tpo -c -o libllvmsupport_la-StringRef.lo `test -f 'llvm/lib/Support/StringRef.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringRef.cpp
4344
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-StringRef.Tpo $(DEPDIR)/libllvmsupport_la-StringRef.Plo
3358
+TargetData.lo: llvm/lib/Target/TargetData.cpp
3359
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetData.lo -MD -MP -MF $(DEPDIR)/TargetData.Tpo -c -o TargetData.lo `test -f 'llvm/lib/Target/TargetData.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetData.cpp
3360
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetData.Tpo $(DEPDIR)/TargetData.Plo
4345 3361
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4346
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/StringRef.cpp' object='libllvmsupport_la-StringRef.lo' libtool=yes @AMDEPBACKSLASH@
3362
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetData.cpp' object='TargetData.lo' libtool=yes @AMDEPBACKSLASH@
4347 3363
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4348
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-StringRef.lo `test -f 'llvm/lib/Support/StringRef.cpp' || echo '$(srcdir)/'`llvm/lib/Support/StringRef.cpp
3364
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetData.lo `test -f 'llvm/lib/Target/TargetData.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetData.cpp
4349 3365
 
4350
-libllvmsupport_la-SystemUtils.lo: llvm/lib/Support/SystemUtils.cpp
4351
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-SystemUtils.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-SystemUtils.Tpo -c -o libllvmsupport_la-SystemUtils.lo `test -f 'llvm/lib/Support/SystemUtils.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SystemUtils.cpp
4352
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-SystemUtils.Tpo $(DEPDIR)/libllvmsupport_la-SystemUtils.Plo
3366
+TargetMachine.lo: llvm/lib/Target/TargetMachine.cpp
3367
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TargetMachine.lo -MD -MP -MF $(DEPDIR)/TargetMachine.Tpo -c -o TargetMachine.lo `test -f 'llvm/lib/Target/TargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetMachine.cpp
3368
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TargetMachine.Tpo $(DEPDIR)/TargetMachine.Plo
4353 3369
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4354
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/SystemUtils.cpp' object='libllvmsupport_la-SystemUtils.lo' libtool=yes @AMDEPBACKSLASH@
3370
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetMachine.cpp' object='TargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
4355 3371
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4356
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-SystemUtils.lo `test -f 'llvm/lib/Support/SystemUtils.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SystemUtils.cpp
3372
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TargetMachine.lo `test -f 'llvm/lib/Target/TargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetMachine.cpp
4357 3373
 
4358
-libllvmsupport_la-TargetRegistry.lo: llvm/lib/Support/TargetRegistry.cpp
4359
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-TargetRegistry.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-TargetRegistry.Tpo -c -o libllvmsupport_la-TargetRegistry.lo `test -f 'llvm/lib/Support/TargetRegistry.cpp' || echo '$(srcdir)/'`llvm/lib/Support/TargetRegistry.cpp
4360
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-TargetRegistry.Tpo $(DEPDIR)/libllvmsupport_la-TargetRegistry.Plo
3374
+AsmWriter.lo: llvm/lib/VMCore/AsmWriter.cpp
3375
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT AsmWriter.lo -MD -MP -MF $(DEPDIR)/AsmWriter.Tpo -c -o AsmWriter.lo `test -f 'llvm/lib/VMCore/AsmWriter.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/AsmWriter.cpp
3376
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/AsmWriter.Tpo $(DEPDIR)/AsmWriter.Plo
4361 3377
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4362
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/TargetRegistry.cpp' object='libllvmsupport_la-TargetRegistry.lo' libtool=yes @AMDEPBACKSLASH@
3378
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/AsmWriter.cpp' object='AsmWriter.lo' libtool=yes @AMDEPBACKSLASH@
4363 3379
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4364
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-TargetRegistry.lo `test -f 'llvm/lib/Support/TargetRegistry.cpp' || echo '$(srcdir)/'`llvm/lib/Support/TargetRegistry.cpp
3380
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o AsmWriter.lo `test -f 'llvm/lib/VMCore/AsmWriter.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/AsmWriter.cpp
4365 3381
 
4366
-libllvmsupport_la-Timer.lo: llvm/lib/Support/Timer.cpp
4367
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-Timer.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-Timer.Tpo -c -o libllvmsupport_la-Timer.lo `test -f 'llvm/lib/Support/Timer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Timer.cpp
4368
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-Timer.Tpo $(DEPDIR)/libllvmsupport_la-Timer.Plo
3382
+Attributes.lo: llvm/lib/VMCore/Attributes.cpp
3383
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Attributes.lo -MD -MP -MF $(DEPDIR)/Attributes.Tpo -c -o Attributes.lo `test -f 'llvm/lib/VMCore/Attributes.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Attributes.cpp
3384
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Attributes.Tpo $(DEPDIR)/Attributes.Plo
4369 3385
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4370
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Timer.cpp' object='libllvmsupport_la-Timer.lo' libtool=yes @AMDEPBACKSLASH@
3386
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Attributes.cpp' object='Attributes.lo' libtool=yes @AMDEPBACKSLASH@
4371 3387
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4372
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-Timer.lo `test -f 'llvm/lib/Support/Timer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Timer.cpp
3388
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Attributes.lo `test -f 'llvm/lib/VMCore/Attributes.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Attributes.cpp
4373 3389
 
4374
-libllvmsupport_la-Triple.lo: llvm/lib/Support/Triple.cpp
4375
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-Triple.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-Triple.Tpo -c -o libllvmsupport_la-Triple.lo `test -f 'llvm/lib/Support/Triple.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Triple.cpp
4376
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-Triple.Tpo $(DEPDIR)/libllvmsupport_la-Triple.Plo
3390
+AutoUpgrade.lo: llvm/lib/VMCore/AutoUpgrade.cpp
3391
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT AutoUpgrade.lo -MD -MP -MF $(DEPDIR)/AutoUpgrade.Tpo -c -o AutoUpgrade.lo `test -f 'llvm/lib/VMCore/AutoUpgrade.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/AutoUpgrade.cpp
3392
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/AutoUpgrade.Tpo $(DEPDIR)/AutoUpgrade.Plo
4377 3393
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4378
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Triple.cpp' object='libllvmsupport_la-Triple.lo' libtool=yes @AMDEPBACKSLASH@
3394
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/AutoUpgrade.cpp' object='AutoUpgrade.lo' libtool=yes @AMDEPBACKSLASH@
4379 3395
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4380
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-Triple.lo `test -f 'llvm/lib/Support/Triple.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Triple.cpp
3396
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o AutoUpgrade.lo `test -f 'llvm/lib/VMCore/AutoUpgrade.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/AutoUpgrade.cpp
4381 3397
 
4382
-libllvmsupport_la-Twine.lo: llvm/lib/Support/Twine.cpp
4383
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-Twine.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-Twine.Tpo -c -o libllvmsupport_la-Twine.lo `test -f 'llvm/lib/Support/Twine.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Twine.cpp
4384
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-Twine.Tpo $(DEPDIR)/libllvmsupport_la-Twine.Plo
3398
+BasicBlock.lo: llvm/lib/VMCore/BasicBlock.cpp
3399
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT BasicBlock.lo -MD -MP -MF $(DEPDIR)/BasicBlock.Tpo -c -o BasicBlock.lo `test -f 'llvm/lib/VMCore/BasicBlock.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/BasicBlock.cpp
3400
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/BasicBlock.Tpo $(DEPDIR)/BasicBlock.Plo
4385 3401
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4386
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Twine.cpp' object='libllvmsupport_la-Twine.lo' libtool=yes @AMDEPBACKSLASH@
3402
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/BasicBlock.cpp' object='BasicBlock.lo' libtool=yes @AMDEPBACKSLASH@
4387 3403
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4388
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-Twine.lo `test -f 'llvm/lib/Support/Twine.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Twine.cpp
3404
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o BasicBlock.lo `test -f 'llvm/lib/VMCore/BasicBlock.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/BasicBlock.cpp
4389 3405
 
4390
-libllvmsupport_la-raw_os_ostream.lo: llvm/lib/Support/raw_os_ostream.cpp
4391
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-raw_os_ostream.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-raw_os_ostream.Tpo -c -o libllvmsupport_la-raw_os_ostream.lo `test -f 'llvm/lib/Support/raw_os_ostream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/raw_os_ostream.cpp
4392
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-raw_os_ostream.Tpo $(DEPDIR)/libllvmsupport_la-raw_os_ostream.Plo
3406
+ConstantFold.lo: llvm/lib/VMCore/ConstantFold.cpp
3407
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ConstantFold.lo -MD -MP -MF $(DEPDIR)/ConstantFold.Tpo -c -o ConstantFold.lo `test -f 'llvm/lib/VMCore/ConstantFold.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ConstantFold.cpp
3408
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ConstantFold.Tpo $(DEPDIR)/ConstantFold.Plo
4393 3409
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4394
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/raw_os_ostream.cpp' object='libllvmsupport_la-raw_os_ostream.lo' libtool=yes @AMDEPBACKSLASH@
3410
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/ConstantFold.cpp' object='ConstantFold.lo' libtool=yes @AMDEPBACKSLASH@
4395 3411
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4396
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-raw_os_ostream.lo `test -f 'llvm/lib/Support/raw_os_ostream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/raw_os_ostream.cpp
3412
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ConstantFold.lo `test -f 'llvm/lib/VMCore/ConstantFold.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ConstantFold.cpp
4397 3413
 
4398
-libllvmsupport_la-raw_ostream.lo: llvm/lib/Support/raw_ostream.cpp
4399
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-raw_ostream.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-raw_ostream.Tpo -c -o libllvmsupport_la-raw_ostream.lo `test -f 'llvm/lib/Support/raw_ostream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/raw_ostream.cpp
4400
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-raw_ostream.Tpo $(DEPDIR)/libllvmsupport_la-raw_ostream.Plo
3414
+Constants.lo: llvm/lib/VMCore/Constants.cpp
3415
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Constants.lo -MD -MP -MF $(DEPDIR)/Constants.Tpo -c -o Constants.lo `test -f 'llvm/lib/VMCore/Constants.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Constants.cpp
3416
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Constants.Tpo $(DEPDIR)/Constants.Plo
4401 3417
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4402
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/raw_ostream.cpp' object='libllvmsupport_la-raw_ostream.lo' libtool=yes @AMDEPBACKSLASH@
3418
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Constants.cpp' object='Constants.lo' libtool=yes @AMDEPBACKSLASH@
4403 3419
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4404
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-raw_ostream.lo `test -f 'llvm/lib/Support/raw_ostream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/raw_ostream.cpp
3420
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Constants.lo `test -f 'llvm/lib/VMCore/Constants.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Constants.cpp
4405 3421
 
4406
-libllvmsupport_la-Regex.lo: llvm/lib/Support/Regex.cpp
4407
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsupport_la-Regex.lo -MD -MP -MF $(DEPDIR)/libllvmsupport_la-Regex.Tpo -c -o libllvmsupport_la-Regex.lo `test -f 'llvm/lib/Support/Regex.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Regex.cpp
4408
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsupport_la-Regex.Tpo $(DEPDIR)/libllvmsupport_la-Regex.Plo
3422
+Core.lo: llvm/lib/VMCore/Core.cpp
3423
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Core.lo -MD -MP -MF $(DEPDIR)/Core.Tpo -c -o Core.lo `test -f 'llvm/lib/VMCore/Core.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Core.cpp
3424
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Core.Tpo $(DEPDIR)/Core.Plo
4409 3425
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4410
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Regex.cpp' object='libllvmsupport_la-Regex.lo' libtool=yes @AMDEPBACKSLASH@
3426
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Core.cpp' object='Core.lo' libtool=yes @AMDEPBACKSLASH@
4411 3427
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4412
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsupport_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsupport_la-Regex.lo `test -f 'llvm/lib/Support/Regex.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Regex.cpp
3428
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Core.lo `test -f 'llvm/lib/VMCore/Core.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Core.cpp
4413 3429
 
4414
-libllvmsystem_la-Alarm.lo: llvm/lib/System/Alarm.cpp
4415
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Alarm.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Alarm.Tpo -c -o libllvmsystem_la-Alarm.lo `test -f 'llvm/lib/System/Alarm.cpp' || echo '$(srcdir)/'`llvm/lib/System/Alarm.cpp
4416
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Alarm.Tpo $(DEPDIR)/libllvmsystem_la-Alarm.Plo
3430
+Dominators.lo: llvm/lib/VMCore/Dominators.cpp
3431
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Dominators.lo -MD -MP -MF $(DEPDIR)/Dominators.Tpo -c -o Dominators.lo `test -f 'llvm/lib/VMCore/Dominators.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Dominators.cpp
3432
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Dominators.Tpo $(DEPDIR)/Dominators.Plo
4417 3433
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4418
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Alarm.cpp' object='libllvmsystem_la-Alarm.lo' libtool=yes @AMDEPBACKSLASH@
3434
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Dominators.cpp' object='Dominators.lo' libtool=yes @AMDEPBACKSLASH@
4419 3435
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4420
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Alarm.lo `test -f 'llvm/lib/System/Alarm.cpp' || echo '$(srcdir)/'`llvm/lib/System/Alarm.cpp
3436
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Dominators.lo `test -f 'llvm/lib/VMCore/Dominators.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Dominators.cpp
4421 3437
 
4422
-libllvmsystem_la-Atomic.lo: llvm/lib/System/Atomic.cpp
4423
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Atomic.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Atomic.Tpo -c -o libllvmsystem_la-Atomic.lo `test -f 'llvm/lib/System/Atomic.cpp' || echo '$(srcdir)/'`llvm/lib/System/Atomic.cpp
4424
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Atomic.Tpo $(DEPDIR)/libllvmsystem_la-Atomic.Plo
3438
+Function.lo: llvm/lib/VMCore/Function.cpp
3439
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Function.lo -MD -MP -MF $(DEPDIR)/Function.Tpo -c -o Function.lo `test -f 'llvm/lib/VMCore/Function.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Function.cpp
3440
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Function.Tpo $(DEPDIR)/Function.Plo
4425 3441
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4426
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Atomic.cpp' object='libllvmsystem_la-Atomic.lo' libtool=yes @AMDEPBACKSLASH@
3442
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Function.cpp' object='Function.lo' libtool=yes @AMDEPBACKSLASH@
4427 3443
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4428
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Atomic.lo `test -f 'llvm/lib/System/Atomic.cpp' || echo '$(srcdir)/'`llvm/lib/System/Atomic.cpp
3444
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Function.lo `test -f 'llvm/lib/VMCore/Function.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Function.cpp
4429 3445
 
4430
-libllvmsystem_la-Disassembler.lo: llvm/lib/System/Disassembler.cpp
4431
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Disassembler.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Disassembler.Tpo -c -o libllvmsystem_la-Disassembler.lo `test -f 'llvm/lib/System/Disassembler.cpp' || echo '$(srcdir)/'`llvm/lib/System/Disassembler.cpp
4432
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Disassembler.Tpo $(DEPDIR)/libllvmsystem_la-Disassembler.Plo
3446
+Globals.lo: llvm/lib/VMCore/Globals.cpp
3447
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Globals.lo -MD -MP -MF $(DEPDIR)/Globals.Tpo -c -o Globals.lo `test -f 'llvm/lib/VMCore/Globals.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Globals.cpp
3448
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Globals.Tpo $(DEPDIR)/Globals.Plo
4433 3449
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4434
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Disassembler.cpp' object='libllvmsystem_la-Disassembler.lo' libtool=yes @AMDEPBACKSLASH@
3450
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Globals.cpp' object='Globals.lo' libtool=yes @AMDEPBACKSLASH@
4435 3451
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4436
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Disassembler.lo `test -f 'llvm/lib/System/Disassembler.cpp' || echo '$(srcdir)/'`llvm/lib/System/Disassembler.cpp
3452
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Globals.lo `test -f 'llvm/lib/VMCore/Globals.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Globals.cpp
4437 3453
 
4438
-libllvmsystem_la-DynamicLibrary.lo: llvm/lib/System/DynamicLibrary.cpp
4439
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-DynamicLibrary.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-DynamicLibrary.Tpo -c -o libllvmsystem_la-DynamicLibrary.lo `test -f 'llvm/lib/System/DynamicLibrary.cpp' || echo '$(srcdir)/'`llvm/lib/System/DynamicLibrary.cpp
4440
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-DynamicLibrary.Tpo $(DEPDIR)/libllvmsystem_la-DynamicLibrary.Plo
3454
+InlineAsm.lo: llvm/lib/VMCore/InlineAsm.cpp
3455
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT InlineAsm.lo -MD -MP -MF $(DEPDIR)/InlineAsm.Tpo -c -o InlineAsm.lo `test -f 'llvm/lib/VMCore/InlineAsm.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/InlineAsm.cpp
3456
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/InlineAsm.Tpo $(DEPDIR)/InlineAsm.Plo
4441 3457
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4442
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/DynamicLibrary.cpp' object='libllvmsystem_la-DynamicLibrary.lo' libtool=yes @AMDEPBACKSLASH@
3458
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/InlineAsm.cpp' object='InlineAsm.lo' libtool=yes @AMDEPBACKSLASH@
4443 3459
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4444
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-DynamicLibrary.lo `test -f 'llvm/lib/System/DynamicLibrary.cpp' || echo '$(srcdir)/'`llvm/lib/System/DynamicLibrary.cpp
3460
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o InlineAsm.lo `test -f 'llvm/lib/VMCore/InlineAsm.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/InlineAsm.cpp
4445 3461
 
4446
-libllvmsystem_la-Errno.lo: llvm/lib/System/Errno.cpp
4447
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Errno.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Errno.Tpo -c -o libllvmsystem_la-Errno.lo `test -f 'llvm/lib/System/Errno.cpp' || echo '$(srcdir)/'`llvm/lib/System/Errno.cpp
4448
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Errno.Tpo $(DEPDIR)/libllvmsystem_la-Errno.Plo
3462
+Instruction.lo: llvm/lib/VMCore/Instruction.cpp
3463
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Instruction.lo -MD -MP -MF $(DEPDIR)/Instruction.Tpo -c -o Instruction.lo `test -f 'llvm/lib/VMCore/Instruction.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Instruction.cpp
3464
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Instruction.Tpo $(DEPDIR)/Instruction.Plo
4449 3465
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4450
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Errno.cpp' object='libllvmsystem_la-Errno.lo' libtool=yes @AMDEPBACKSLASH@
3466
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Instruction.cpp' object='Instruction.lo' libtool=yes @AMDEPBACKSLASH@
4451 3467
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4452
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Errno.lo `test -f 'llvm/lib/System/Errno.cpp' || echo '$(srcdir)/'`llvm/lib/System/Errno.cpp
3468
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Instruction.lo `test -f 'llvm/lib/VMCore/Instruction.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Instruction.cpp
4453 3469
 
4454
-libllvmsystem_la-Host.lo: llvm/lib/System/Host.cpp
4455
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Host.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Host.Tpo -c -o libllvmsystem_la-Host.lo `test -f 'llvm/lib/System/Host.cpp' || echo '$(srcdir)/'`llvm/lib/System/Host.cpp
4456
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Host.Tpo $(DEPDIR)/libllvmsystem_la-Host.Plo
3470
+Instructions.lo: llvm/lib/VMCore/Instructions.cpp
3471
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Instructions.lo -MD -MP -MF $(DEPDIR)/Instructions.Tpo -c -o Instructions.lo `test -f 'llvm/lib/VMCore/Instructions.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Instructions.cpp
3472
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Instructions.Tpo $(DEPDIR)/Instructions.Plo
4457 3473
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4458
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Host.cpp' object='libllvmsystem_la-Host.lo' libtool=yes @AMDEPBACKSLASH@
3474
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Instructions.cpp' object='Instructions.lo' libtool=yes @AMDEPBACKSLASH@
4459 3475
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4460
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Host.lo `test -f 'llvm/lib/System/Host.cpp' || echo '$(srcdir)/'`llvm/lib/System/Host.cpp
3476
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Instructions.lo `test -f 'llvm/lib/VMCore/Instructions.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Instructions.cpp
4461 3477
 
4462
-libllvmsystem_la-IncludeFile.lo: llvm/lib/System/IncludeFile.cpp
4463
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-IncludeFile.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-IncludeFile.Tpo -c -o libllvmsystem_la-IncludeFile.lo `test -f 'llvm/lib/System/IncludeFile.cpp' || echo '$(srcdir)/'`llvm/lib/System/IncludeFile.cpp
4464
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-IncludeFile.Tpo $(DEPDIR)/libllvmsystem_la-IncludeFile.Plo
3478
+IntrinsicInst.lo: llvm/lib/VMCore/IntrinsicInst.cpp
3479
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IntrinsicInst.lo -MD -MP -MF $(DEPDIR)/IntrinsicInst.Tpo -c -o IntrinsicInst.lo `test -f 'llvm/lib/VMCore/IntrinsicInst.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/IntrinsicInst.cpp
3480
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/IntrinsicInst.Tpo $(DEPDIR)/IntrinsicInst.Plo
4465 3481
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4466
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/IncludeFile.cpp' object='libllvmsystem_la-IncludeFile.lo' libtool=yes @AMDEPBACKSLASH@
3482
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/IntrinsicInst.cpp' object='IntrinsicInst.lo' libtool=yes @AMDEPBACKSLASH@
4467 3483
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4468
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-IncludeFile.lo `test -f 'llvm/lib/System/IncludeFile.cpp' || echo '$(srcdir)/'`llvm/lib/System/IncludeFile.cpp
3484
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IntrinsicInst.lo `test -f 'llvm/lib/VMCore/IntrinsicInst.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/IntrinsicInst.cpp
4469 3485
 
4470
-libllvmsystem_la-Memory.lo: llvm/lib/System/Memory.cpp
4471
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Memory.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Memory.Tpo -c -o libllvmsystem_la-Memory.lo `test -f 'llvm/lib/System/Memory.cpp' || echo '$(srcdir)/'`llvm/lib/System/Memory.cpp
4472
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Memory.Tpo $(DEPDIR)/libllvmsystem_la-Memory.Plo
3486
+LLVMContext.lo: llvm/lib/VMCore/LLVMContext.cpp
3487
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT LLVMContext.lo -MD -MP -MF $(DEPDIR)/LLVMContext.Tpo -c -o LLVMContext.lo `test -f 'llvm/lib/VMCore/LLVMContext.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/LLVMContext.cpp
3488
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/LLVMContext.Tpo $(DEPDIR)/LLVMContext.Plo
4473 3489
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4474
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Memory.cpp' object='libllvmsystem_la-Memory.lo' libtool=yes @AMDEPBACKSLASH@
3490
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/LLVMContext.cpp' object='LLVMContext.lo' libtool=yes @AMDEPBACKSLASH@
4475 3491
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4476
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Memory.lo `test -f 'llvm/lib/System/Memory.cpp' || echo '$(srcdir)/'`llvm/lib/System/Memory.cpp
3492
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o LLVMContext.lo `test -f 'llvm/lib/VMCore/LLVMContext.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/LLVMContext.cpp
4477 3493
 
4478
-libllvmsystem_la-Mutex.lo: llvm/lib/System/Mutex.cpp
4479
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Mutex.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Mutex.Tpo -c -o libllvmsystem_la-Mutex.lo `test -f 'llvm/lib/System/Mutex.cpp' || echo '$(srcdir)/'`llvm/lib/System/Mutex.cpp
4480
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Mutex.Tpo $(DEPDIR)/libllvmsystem_la-Mutex.Plo
3494
+LeakDetector.lo: llvm/lib/VMCore/LeakDetector.cpp
3495
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT LeakDetector.lo -MD -MP -MF $(DEPDIR)/LeakDetector.Tpo -c -o LeakDetector.lo `test -f 'llvm/lib/VMCore/LeakDetector.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/LeakDetector.cpp
3496
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/LeakDetector.Tpo $(DEPDIR)/LeakDetector.Plo
4481 3497
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4482
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Mutex.cpp' object='libllvmsystem_la-Mutex.lo' libtool=yes @AMDEPBACKSLASH@
3498
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/LeakDetector.cpp' object='LeakDetector.lo' libtool=yes @AMDEPBACKSLASH@
4483 3499
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4484
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Mutex.lo `test -f 'llvm/lib/System/Mutex.cpp' || echo '$(srcdir)/'`llvm/lib/System/Mutex.cpp
3500
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o LeakDetector.lo `test -f 'llvm/lib/VMCore/LeakDetector.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/LeakDetector.cpp
4485 3501
 
4486
-libllvmsystem_la-Path.lo: llvm/lib/System/Path.cpp
4487
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Path.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Path.Tpo -c -o libllvmsystem_la-Path.lo `test -f 'llvm/lib/System/Path.cpp' || echo '$(srcdir)/'`llvm/lib/System/Path.cpp
4488
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Path.Tpo $(DEPDIR)/libllvmsystem_la-Path.Plo
3502
+Mangler.lo: llvm/lib/VMCore/Mangler.cpp
3503
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Mangler.lo -MD -MP -MF $(DEPDIR)/Mangler.Tpo -c -o Mangler.lo `test -f 'llvm/lib/VMCore/Mangler.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Mangler.cpp
3504
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Mangler.Tpo $(DEPDIR)/Mangler.Plo
4489 3505
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4490
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Path.cpp' object='libllvmsystem_la-Path.lo' libtool=yes @AMDEPBACKSLASH@
3506
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Mangler.cpp' object='Mangler.lo' libtool=yes @AMDEPBACKSLASH@
4491 3507
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4492
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Path.lo `test -f 'llvm/lib/System/Path.cpp' || echo '$(srcdir)/'`llvm/lib/System/Path.cpp
3508
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Mangler.lo `test -f 'llvm/lib/VMCore/Mangler.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Mangler.cpp
4493 3509
 
4494
-libllvmsystem_la-Process.lo: llvm/lib/System/Process.cpp
4495
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Process.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Process.Tpo -c -o libllvmsystem_la-Process.lo `test -f 'llvm/lib/System/Process.cpp' || echo '$(srcdir)/'`llvm/lib/System/Process.cpp
4496
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Process.Tpo $(DEPDIR)/libllvmsystem_la-Process.Plo
3510
+Metadata.lo: llvm/lib/VMCore/Metadata.cpp
3511
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Metadata.lo -MD -MP -MF $(DEPDIR)/Metadata.Tpo -c -o Metadata.lo `test -f 'llvm/lib/VMCore/Metadata.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Metadata.cpp
3512
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Metadata.Tpo $(DEPDIR)/Metadata.Plo
4497 3513
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4498
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Process.cpp' object='libllvmsystem_la-Process.lo' libtool=yes @AMDEPBACKSLASH@
3514
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Metadata.cpp' object='Metadata.lo' libtool=yes @AMDEPBACKSLASH@
4499 3515
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4500
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Process.lo `test -f 'llvm/lib/System/Process.cpp' || echo '$(srcdir)/'`llvm/lib/System/Process.cpp
3516
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Metadata.lo `test -f 'llvm/lib/VMCore/Metadata.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Metadata.cpp
4501 3517
 
4502
-libllvmsystem_la-Program.lo: llvm/lib/System/Program.cpp
4503
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Program.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Program.Tpo -c -o libllvmsystem_la-Program.lo `test -f 'llvm/lib/System/Program.cpp' || echo '$(srcdir)/'`llvm/lib/System/Program.cpp
4504
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Program.Tpo $(DEPDIR)/libllvmsystem_la-Program.Plo
3518
+Module.lo: llvm/lib/VMCore/Module.cpp
3519
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Module.lo -MD -MP -MF $(DEPDIR)/Module.Tpo -c -o Module.lo `test -f 'llvm/lib/VMCore/Module.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Module.cpp
3520
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Module.Tpo $(DEPDIR)/Module.Plo
4505 3521
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4506
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Program.cpp' object='libllvmsystem_la-Program.lo' libtool=yes @AMDEPBACKSLASH@
3522
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Module.cpp' object='Module.lo' libtool=yes @AMDEPBACKSLASH@
4507 3523
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4508
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Program.lo `test -f 'llvm/lib/System/Program.cpp' || echo '$(srcdir)/'`llvm/lib/System/Program.cpp
3524
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Module.lo `test -f 'llvm/lib/VMCore/Module.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Module.cpp
4509 3525
 
4510
-libllvmsystem_la-RWMutex.lo: llvm/lib/System/RWMutex.cpp
4511
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-RWMutex.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-RWMutex.Tpo -c -o libllvmsystem_la-RWMutex.lo `test -f 'llvm/lib/System/RWMutex.cpp' || echo '$(srcdir)/'`llvm/lib/System/RWMutex.cpp
4512
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-RWMutex.Tpo $(DEPDIR)/libllvmsystem_la-RWMutex.Plo
3526
+ModuleProvider.lo: llvm/lib/VMCore/ModuleProvider.cpp
3527
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ModuleProvider.lo -MD -MP -MF $(DEPDIR)/ModuleProvider.Tpo -c -o ModuleProvider.lo `test -f 'llvm/lib/VMCore/ModuleProvider.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ModuleProvider.cpp
3528
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ModuleProvider.Tpo $(DEPDIR)/ModuleProvider.Plo
4513 3529
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4514
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/RWMutex.cpp' object='libllvmsystem_la-RWMutex.lo' libtool=yes @AMDEPBACKSLASH@
3530
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/ModuleProvider.cpp' object='ModuleProvider.lo' libtool=yes @AMDEPBACKSLASH@
4515 3531
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4516
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-RWMutex.lo `test -f 'llvm/lib/System/RWMutex.cpp' || echo '$(srcdir)/'`llvm/lib/System/RWMutex.cpp
3532
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ModuleProvider.lo `test -f 'llvm/lib/VMCore/ModuleProvider.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ModuleProvider.cpp
4517 3533
 
4518
-libllvmsystem_la-Signals.lo: llvm/lib/System/Signals.cpp
4519
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Signals.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Signals.Tpo -c -o libllvmsystem_la-Signals.lo `test -f 'llvm/lib/System/Signals.cpp' || echo '$(srcdir)/'`llvm/lib/System/Signals.cpp
4520
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Signals.Tpo $(DEPDIR)/libllvmsystem_la-Signals.Plo
3534
+Pass.lo: llvm/lib/VMCore/Pass.cpp
3535
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Pass.lo -MD -MP -MF $(DEPDIR)/Pass.Tpo -c -o Pass.lo `test -f 'llvm/lib/VMCore/Pass.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Pass.cpp
3536
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Pass.Tpo $(DEPDIR)/Pass.Plo
4521 3537
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4522
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Signals.cpp' object='libllvmsystem_la-Signals.lo' libtool=yes @AMDEPBACKSLASH@
3538
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Pass.cpp' object='Pass.lo' libtool=yes @AMDEPBACKSLASH@
4523 3539
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4524
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Signals.lo `test -f 'llvm/lib/System/Signals.cpp' || echo '$(srcdir)/'`llvm/lib/System/Signals.cpp
3540
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Pass.lo `test -f 'llvm/lib/VMCore/Pass.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Pass.cpp
4525 3541
 
4526
-libllvmsystem_la-ThreadLocal.lo: llvm/lib/System/ThreadLocal.cpp
4527
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-ThreadLocal.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-ThreadLocal.Tpo -c -o libllvmsystem_la-ThreadLocal.lo `test -f 'llvm/lib/System/ThreadLocal.cpp' || echo '$(srcdir)/'`llvm/lib/System/ThreadLocal.cpp
4528
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-ThreadLocal.Tpo $(DEPDIR)/libllvmsystem_la-ThreadLocal.Plo
3542
+PassManager.lo: llvm/lib/VMCore/PassManager.cpp
3543
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT PassManager.lo -MD -MP -MF $(DEPDIR)/PassManager.Tpo -c -o PassManager.lo `test -f 'llvm/lib/VMCore/PassManager.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/PassManager.cpp
3544
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/PassManager.Tpo $(DEPDIR)/PassManager.Plo
4529 3545
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4530
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/ThreadLocal.cpp' object='libllvmsystem_la-ThreadLocal.lo' libtool=yes @AMDEPBACKSLASH@
3546
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/PassManager.cpp' object='PassManager.lo' libtool=yes @AMDEPBACKSLASH@
4531 3547
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4532
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-ThreadLocal.lo `test -f 'llvm/lib/System/ThreadLocal.cpp' || echo '$(srcdir)/'`llvm/lib/System/ThreadLocal.cpp
3548
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o PassManager.lo `test -f 'llvm/lib/VMCore/PassManager.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/PassManager.cpp
4533 3549
 
4534
-libllvmsystem_la-Threading.lo: llvm/lib/System/Threading.cpp
4535
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-Threading.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-Threading.Tpo -c -o libllvmsystem_la-Threading.lo `test -f 'llvm/lib/System/Threading.cpp' || echo '$(srcdir)/'`llvm/lib/System/Threading.cpp
4536
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-Threading.Tpo $(DEPDIR)/libllvmsystem_la-Threading.Plo
3550
+PrintModulePass.lo: llvm/lib/VMCore/PrintModulePass.cpp
3551
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT PrintModulePass.lo -MD -MP -MF $(DEPDIR)/PrintModulePass.Tpo -c -o PrintModulePass.lo `test -f 'llvm/lib/VMCore/PrintModulePass.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/PrintModulePass.cpp
3552
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/PrintModulePass.Tpo $(DEPDIR)/PrintModulePass.Plo
4537 3553
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4538
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Threading.cpp' object='libllvmsystem_la-Threading.lo' libtool=yes @AMDEPBACKSLASH@
3554
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/PrintModulePass.cpp' object='PrintModulePass.lo' libtool=yes @AMDEPBACKSLASH@
4539 3555
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4540
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-Threading.lo `test -f 'llvm/lib/System/Threading.cpp' || echo '$(srcdir)/'`llvm/lib/System/Threading.cpp
3556
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o PrintModulePass.lo `test -f 'llvm/lib/VMCore/PrintModulePass.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/PrintModulePass.cpp
4541 3557
 
4542
-libllvmsystem_la-TimeValue.lo: llvm/lib/System/TimeValue.cpp
4543
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmsystem_la-TimeValue.lo -MD -MP -MF $(DEPDIR)/libllvmsystem_la-TimeValue.Tpo -c -o libllvmsystem_la-TimeValue.lo `test -f 'llvm/lib/System/TimeValue.cpp' || echo '$(srcdir)/'`llvm/lib/System/TimeValue.cpp
4544
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmsystem_la-TimeValue.Tpo $(DEPDIR)/libllvmsystem_la-TimeValue.Plo
3558
+Type.lo: llvm/lib/VMCore/Type.cpp
3559
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Type.lo -MD -MP -MF $(DEPDIR)/Type.Tpo -c -o Type.lo `test -f 'llvm/lib/VMCore/Type.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Type.cpp
3560
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Type.Tpo $(DEPDIR)/Type.Plo
4545 3561
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4546
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/TimeValue.cpp' object='libllvmsystem_la-TimeValue.lo' libtool=yes @AMDEPBACKSLASH@
3562
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Type.cpp' object='Type.lo' libtool=yes @AMDEPBACKSLASH@
4547 3563
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4548
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmsystem_la_CPPFLAGS) $(CPPFLAGS) $(libllvmsystem_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmsystem_la-TimeValue.lo `test -f 'llvm/lib/System/TimeValue.cpp' || echo '$(srcdir)/'`llvm/lib/System/TimeValue.cpp
3564
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Type.lo `test -f 'llvm/lib/VMCore/Type.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Type.cpp
4549 3565
 
4550
-libllvmtarget_la-SubtargetFeature.lo: llvm/lib/Target/SubtargetFeature.cpp
4551
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-SubtargetFeature.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-SubtargetFeature.Tpo -c -o libllvmtarget_la-SubtargetFeature.lo `test -f 'llvm/lib/Target/SubtargetFeature.cpp' || echo '$(srcdir)/'`llvm/lib/Target/SubtargetFeature.cpp
4552
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-SubtargetFeature.Tpo $(DEPDIR)/libllvmtarget_la-SubtargetFeature.Plo
3566
+TypeSymbolTable.lo: llvm/lib/VMCore/TypeSymbolTable.cpp
3567
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TypeSymbolTable.lo -MD -MP -MF $(DEPDIR)/TypeSymbolTable.Tpo -c -o TypeSymbolTable.lo `test -f 'llvm/lib/VMCore/TypeSymbolTable.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/TypeSymbolTable.cpp
3568
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TypeSymbolTable.Tpo $(DEPDIR)/TypeSymbolTable.Plo
4553 3569
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4554
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/SubtargetFeature.cpp' object='libllvmtarget_la-SubtargetFeature.lo' libtool=yes @AMDEPBACKSLASH@
3570
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/TypeSymbolTable.cpp' object='TypeSymbolTable.lo' libtool=yes @AMDEPBACKSLASH@
4555 3571
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4556
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-SubtargetFeature.lo `test -f 'llvm/lib/Target/SubtargetFeature.cpp' || echo '$(srcdir)/'`llvm/lib/Target/SubtargetFeature.cpp
3572
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TypeSymbolTable.lo `test -f 'llvm/lib/VMCore/TypeSymbolTable.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/TypeSymbolTable.cpp
4557 3573
 
4558
-libllvmtarget_la-Target.lo: llvm/lib/Target/Target.cpp
4559
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-Target.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-Target.Tpo -c -o libllvmtarget_la-Target.lo `test -f 'llvm/lib/Target/Target.cpp' || echo '$(srcdir)/'`llvm/lib/Target/Target.cpp
4560
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-Target.Tpo $(DEPDIR)/libllvmtarget_la-Target.Plo
3574
+Use.lo: llvm/lib/VMCore/Use.cpp
3575
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Use.lo -MD -MP -MF $(DEPDIR)/Use.Tpo -c -o Use.lo `test -f 'llvm/lib/VMCore/Use.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Use.cpp
3576
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Use.Tpo $(DEPDIR)/Use.Plo
4561 3577
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4562
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/Target.cpp' object='libllvmtarget_la-Target.lo' libtool=yes @AMDEPBACKSLASH@
3578
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Use.cpp' object='Use.lo' libtool=yes @AMDEPBACKSLASH@
4563 3579
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4564
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-Target.lo `test -f 'llvm/lib/Target/Target.cpp' || echo '$(srcdir)/'`llvm/lib/Target/Target.cpp
3580
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Use.lo `test -f 'llvm/lib/VMCore/Use.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Use.cpp
4565 3581
 
4566
-libllvmtarget_la-TargetData.lo: llvm/lib/Target/TargetData.cpp
4567
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetData.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetData.Tpo -c -o libllvmtarget_la-TargetData.lo `test -f 'llvm/lib/Target/TargetData.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetData.cpp
4568
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetData.Tpo $(DEPDIR)/libllvmtarget_la-TargetData.Plo
3582
+Value.lo: llvm/lib/VMCore/Value.cpp
3583
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Value.lo -MD -MP -MF $(DEPDIR)/Value.Tpo -c -o Value.lo `test -f 'llvm/lib/VMCore/Value.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Value.cpp
3584
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Value.Tpo $(DEPDIR)/Value.Plo
4569 3585
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4570
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetData.cpp' object='libllvmtarget_la-TargetData.lo' libtool=yes @AMDEPBACKSLASH@
3586
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Value.cpp' object='Value.lo' libtool=yes @AMDEPBACKSLASH@
4571 3587
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4572
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetData.lo `test -f 'llvm/lib/Target/TargetData.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetData.cpp
3588
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Value.lo `test -f 'llvm/lib/VMCore/Value.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Value.cpp
4573 3589
 
4574
-libllvmtarget_la-TargetELFWriterInfo.lo: llvm/lib/Target/TargetELFWriterInfo.cpp
4575
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetELFWriterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetELFWriterInfo.Tpo -c -o libllvmtarget_la-TargetELFWriterInfo.lo `test -f 'llvm/lib/Target/TargetELFWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetELFWriterInfo.cpp
4576
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetELFWriterInfo.Tpo $(DEPDIR)/libllvmtarget_la-TargetELFWriterInfo.Plo
3590
+ValueSymbolTable.lo: llvm/lib/VMCore/ValueSymbolTable.cpp
3591
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ValueSymbolTable.lo -MD -MP -MF $(DEPDIR)/ValueSymbolTable.Tpo -c -o ValueSymbolTable.lo `test -f 'llvm/lib/VMCore/ValueSymbolTable.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ValueSymbolTable.cpp
3592
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ValueSymbolTable.Tpo $(DEPDIR)/ValueSymbolTable.Plo
4577 3593
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4578
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetELFWriterInfo.cpp' object='libllvmtarget_la-TargetELFWriterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3594
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/ValueSymbolTable.cpp' object='ValueSymbolTable.lo' libtool=yes @AMDEPBACKSLASH@
4579 3595
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4580
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetELFWriterInfo.lo `test -f 'llvm/lib/Target/TargetELFWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetELFWriterInfo.cpp
3596
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ValueSymbolTable.lo `test -f 'llvm/lib/VMCore/ValueSymbolTable.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ValueSymbolTable.cpp
4581 3597
 
4582
-libllvmtarget_la-TargetFrameInfo.lo: llvm/lib/Target/TargetFrameInfo.cpp
4583
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetFrameInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetFrameInfo.Tpo -c -o libllvmtarget_la-TargetFrameInfo.lo `test -f 'llvm/lib/Target/TargetFrameInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetFrameInfo.cpp
4584
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetFrameInfo.Tpo $(DEPDIR)/libllvmtarget_la-TargetFrameInfo.Plo
3598
+ValueTypes.lo: llvm/lib/VMCore/ValueTypes.cpp
3599
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ValueTypes.lo -MD -MP -MF $(DEPDIR)/ValueTypes.Tpo -c -o ValueTypes.lo `test -f 'llvm/lib/VMCore/ValueTypes.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ValueTypes.cpp
3600
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ValueTypes.Tpo $(DEPDIR)/ValueTypes.Plo
4585 3601
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4586
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetFrameInfo.cpp' object='libllvmtarget_la-TargetFrameInfo.lo' libtool=yes @AMDEPBACKSLASH@
3602
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/ValueTypes.cpp' object='ValueTypes.lo' libtool=yes @AMDEPBACKSLASH@
4587 3603
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4588
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetFrameInfo.lo `test -f 'llvm/lib/Target/TargetFrameInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetFrameInfo.cpp
3604
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ValueTypes.lo `test -f 'llvm/lib/VMCore/ValueTypes.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/ValueTypes.cpp
4589 3605
 
4590
-libllvmtarget_la-TargetInstrInfo.lo: llvm/lib/Target/TargetInstrInfo.cpp
4591
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetInstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetInstrInfo.Tpo -c -o libllvmtarget_la-TargetInstrInfo.lo `test -f 'llvm/lib/Target/TargetInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetInstrInfo.cpp
4592
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetInstrInfo.Tpo $(DEPDIR)/libllvmtarget_la-TargetInstrInfo.Plo
3606
+Verifier.lo: llvm/lib/VMCore/Verifier.cpp
3607
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Verifier.lo -MD -MP -MF $(DEPDIR)/Verifier.Tpo -c -o Verifier.lo `test -f 'llvm/lib/VMCore/Verifier.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Verifier.cpp
3608
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Verifier.Tpo $(DEPDIR)/Verifier.Plo
4593 3609
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4594
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetInstrInfo.cpp' object='libllvmtarget_la-TargetInstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3610
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/VMCore/Verifier.cpp' object='Verifier.lo' libtool=yes @AMDEPBACKSLASH@
4595 3611
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4596
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetInstrInfo.lo `test -f 'llvm/lib/Target/TargetInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetInstrInfo.cpp
3612
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Verifier.lo `test -f 'llvm/lib/VMCore/Verifier.cpp' || echo '$(srcdir)/'`llvm/lib/VMCore/Verifier.cpp
4597 3613
 
4598
-libllvmtarget_la-TargetIntrinsicInfo.lo: llvm/lib/Target/TargetIntrinsicInfo.cpp
4599
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetIntrinsicInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetIntrinsicInfo.Tpo -c -o libllvmtarget_la-TargetIntrinsicInfo.lo `test -f 'llvm/lib/Target/TargetIntrinsicInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetIntrinsicInfo.cpp
4600
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetIntrinsicInfo.Tpo $(DEPDIR)/libllvmtarget_la-TargetIntrinsicInfo.Plo
3614
+libllvmpowerpccodegen_la-ScheduleDAG.lo: llvm/lib/CodeGen/ScheduleDAG.cpp
3615
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-ScheduleDAG.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-ScheduleDAG.Tpo -c -o libllvmpowerpccodegen_la-ScheduleDAG.lo `test -f 'llvm/lib/CodeGen/ScheduleDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAG.cpp
3616
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-ScheduleDAG.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-ScheduleDAG.Plo
4601 3617
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4602
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetIntrinsicInfo.cpp' object='libllvmtarget_la-TargetIntrinsicInfo.lo' libtool=yes @AMDEPBACKSLASH@
3618
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/ScheduleDAG.cpp' object='libllvmpowerpccodegen_la-ScheduleDAG.lo' libtool=yes @AMDEPBACKSLASH@
4603 3619
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4604
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetIntrinsicInfo.lo `test -f 'llvm/lib/Target/TargetIntrinsicInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetIntrinsicInfo.cpp
3620
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-ScheduleDAG.lo `test -f 'llvm/lib/CodeGen/ScheduleDAG.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/ScheduleDAG.cpp
4605 3621
 
4606
-libllvmtarget_la-TargetLoweringObjectFile.lo: llvm/lib/Target/TargetLoweringObjectFile.cpp
4607
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetLoweringObjectFile.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetLoweringObjectFile.Tpo -c -o libllvmtarget_la-TargetLoweringObjectFile.lo `test -f 'llvm/lib/Target/TargetLoweringObjectFile.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetLoweringObjectFile.cpp
4608
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetLoweringObjectFile.Tpo $(DEPDIR)/libllvmtarget_la-TargetLoweringObjectFile.Plo
3622
+libllvmpowerpccodegen_la-PPCBranchSelector.lo: llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
3623
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCBranchSelector.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCBranchSelector.Tpo -c -o libllvmpowerpccodegen_la-PPCBranchSelector.lo `test -f 'llvm/lib/Target/PowerPC/PPCBranchSelector.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
3624
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCBranchSelector.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCBranchSelector.Plo
4609 3625
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4610
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetLoweringObjectFile.cpp' object='libllvmtarget_la-TargetLoweringObjectFile.lo' libtool=yes @AMDEPBACKSLASH@
3626
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCBranchSelector.cpp' object='libllvmpowerpccodegen_la-PPCBranchSelector.lo' libtool=yes @AMDEPBACKSLASH@
4611 3627
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4612
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetLoweringObjectFile.lo `test -f 'llvm/lib/Target/TargetLoweringObjectFile.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetLoweringObjectFile.cpp
3628
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCBranchSelector.lo `test -f 'llvm/lib/Target/PowerPC/PPCBranchSelector.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
4613 3629
 
4614
-libllvmtarget_la-TargetMachOWriterInfo.lo: llvm/lib/Target/TargetMachOWriterInfo.cpp
4615
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetMachOWriterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetMachOWriterInfo.Tpo -c -o libllvmtarget_la-TargetMachOWriterInfo.lo `test -f 'llvm/lib/Target/TargetMachOWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetMachOWriterInfo.cpp
4616
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetMachOWriterInfo.Tpo $(DEPDIR)/libllvmtarget_la-TargetMachOWriterInfo.Plo
3630
+libllvmpowerpccodegen_la-PPCCodeEmitter.lo: llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
3631
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCCodeEmitter.Tpo -c -o libllvmpowerpccodegen_la-PPCCodeEmitter.lo `test -f 'llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
3632
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCCodeEmitter.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCCodeEmitter.Plo
4617 3633
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4618
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetMachOWriterInfo.cpp' object='libllvmtarget_la-TargetMachOWriterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3634
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp' object='libllvmpowerpccodegen_la-PPCCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
4619 3635
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4620
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetMachOWriterInfo.lo `test -f 'llvm/lib/Target/TargetMachOWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetMachOWriterInfo.cpp
3636
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCCodeEmitter.lo `test -f 'llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
4621 3637
 
4622
-libllvmtarget_la-TargetMachine.lo: llvm/lib/Target/TargetMachine.cpp
4623
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetMachine.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetMachine.Tpo -c -o libllvmtarget_la-TargetMachine.lo `test -f 'llvm/lib/Target/TargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetMachine.cpp
4624
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetMachine.Tpo $(DEPDIR)/libllvmtarget_la-TargetMachine.Plo
3638
+libllvmpowerpccodegen_la-PPCHazardRecognizers.lo: llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
3639
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCHazardRecognizers.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCHazardRecognizers.Tpo -c -o libllvmpowerpccodegen_la-PPCHazardRecognizers.lo `test -f 'llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
3640
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCHazardRecognizers.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCHazardRecognizers.Plo
4625 3641
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4626
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetMachine.cpp' object='libllvmtarget_la-TargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
3642
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp' object='libllvmpowerpccodegen_la-PPCHazardRecognizers.lo' libtool=yes @AMDEPBACKSLASH@
4627 3643
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4628
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetMachine.lo `test -f 'llvm/lib/Target/TargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetMachine.cpp
3644
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCHazardRecognizers.lo `test -f 'llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
4629 3645
 
4630
-libllvmtarget_la-TargetRegisterInfo.lo: llvm/lib/Target/TargetRegisterInfo.cpp
4631
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetRegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetRegisterInfo.Tpo -c -o libllvmtarget_la-TargetRegisterInfo.lo `test -f 'llvm/lib/Target/TargetRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetRegisterInfo.cpp
4632
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetRegisterInfo.Tpo $(DEPDIR)/libllvmtarget_la-TargetRegisterInfo.Plo
3646
+libllvmpowerpccodegen_la-PPCISelDAGToDAG.lo: llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
3647
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCISelDAGToDAG.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCISelDAGToDAG.Tpo -c -o libllvmpowerpccodegen_la-PPCISelDAGToDAG.lo `test -f 'llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
3648
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCISelDAGToDAG.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCISelDAGToDAG.Plo
4633 3649
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4634
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetRegisterInfo.cpp' object='libllvmtarget_la-TargetRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3650
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp' object='libllvmpowerpccodegen_la-PPCISelDAGToDAG.lo' libtool=yes @AMDEPBACKSLASH@
4635 3651
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4636
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetRegisterInfo.lo `test -f 'llvm/lib/Target/TargetRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetRegisterInfo.cpp
3652
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCISelDAGToDAG.lo `test -f 'llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
4637 3653
 
4638
-libllvmtarget_la-TargetSubtarget.lo: llvm/lib/Target/TargetSubtarget.cpp
4639
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtarget_la-TargetSubtarget.lo -MD -MP -MF $(DEPDIR)/libllvmtarget_la-TargetSubtarget.Tpo -c -o libllvmtarget_la-TargetSubtarget.lo `test -f 'llvm/lib/Target/TargetSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetSubtarget.cpp
4640
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtarget_la-TargetSubtarget.Tpo $(DEPDIR)/libllvmtarget_la-TargetSubtarget.Plo
3654
+libllvmpowerpccodegen_la-PPCISelLowering.lo: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
3655
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCISelLowering.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCISelLowering.Tpo -c -o libllvmpowerpccodegen_la-PPCISelLowering.lo `test -f 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCISelLowering.cpp
3656
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCISelLowering.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCISelLowering.Plo
4641 3657
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4642
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetSubtarget.cpp' object='libllvmtarget_la-TargetSubtarget.lo' libtool=yes @AMDEPBACKSLASH@
3658
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCISelLowering.cpp' object='libllvmpowerpccodegen_la-PPCISelLowering.lo' libtool=yes @AMDEPBACKSLASH@
4643 3659
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4644
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtarget_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtarget_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtarget_la-TargetSubtarget.lo `test -f 'llvm/lib/Target/TargetSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetSubtarget.cpp
3660
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCISelLowering.lo `test -f 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCISelLowering.cpp
4645 3661
 
4646
-libllvmtargetarm_la-ARMBaseInstrInfo.lo: llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
4647
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMBaseInstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMBaseInstrInfo.Tpo -c -o libllvmtargetarm_la-ARMBaseInstrInfo.lo `test -f 'llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
4648
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMBaseInstrInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMBaseInstrInfo.Plo
3662
+libllvmpowerpccodegen_la-PPCInstrInfo.lo: llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
3663
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCInstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCInstrInfo.Tpo -c -o libllvmpowerpccodegen_la-PPCInstrInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
3664
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCInstrInfo.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCInstrInfo.Plo
4649 3665
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4650
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp' object='libllvmtargetarm_la-ARMBaseInstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3666
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCInstrInfo.cpp' object='libllvmpowerpccodegen_la-PPCInstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
4651 3667
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4652
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMBaseInstrInfo.lo `test -f 'llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
3668
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCInstrInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
4653 3669
 
4654
-libllvmtargetarm_la-ARMBaseRegisterInfo.lo: llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
4655
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMBaseRegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMBaseRegisterInfo.Tpo -c -o libllvmtargetarm_la-ARMBaseRegisterInfo.lo `test -f 'llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
4656
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMBaseRegisterInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMBaseRegisterInfo.Plo
3670
+libllvmpowerpccodegen_la-PPCJITInfo.lo: llvm/lib/Target/PowerPC/PPCJITInfo.cpp
3671
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCJITInfo.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCJITInfo.Tpo -c -o libllvmpowerpccodegen_la-PPCJITInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCJITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCJITInfo.cpp
3672
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCJITInfo.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCJITInfo.Plo
4657 3673
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4658
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp' object='libllvmtargetarm_la-ARMBaseRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3674
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCJITInfo.cpp' object='libllvmpowerpccodegen_la-PPCJITInfo.lo' libtool=yes @AMDEPBACKSLASH@
4659 3675
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4660
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMBaseRegisterInfo.lo `test -f 'llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
3676
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCJITInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCJITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCJITInfo.cpp
4661 3677
 
4662
-libllvmtargetarm_la-ARMCodeEmitter.lo: llvm/lib/Target/ARM/ARMCodeEmitter.cpp
4663
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMCodeEmitter.Tpo -c -o libllvmtargetarm_la-ARMCodeEmitter.lo `test -f 'llvm/lib/Target/ARM/ARMCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMCodeEmitter.cpp
4664
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMCodeEmitter.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMCodeEmitter.Plo
3678
+libllvmpowerpccodegen_la-PPCMCAsmInfo.lo: llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp
3679
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCMCAsmInfo.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCMCAsmInfo.Tpo -c -o libllvmpowerpccodegen_la-PPCMCAsmInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp
3680
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCMCAsmInfo.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCMCAsmInfo.Plo
4665 3681
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4666
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMCodeEmitter.cpp' object='libllvmtargetarm_la-ARMCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
3682
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp' object='libllvmpowerpccodegen_la-PPCMCAsmInfo.lo' libtool=yes @AMDEPBACKSLASH@
4667 3683
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4668
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMCodeEmitter.lo `test -f 'llvm/lib/Target/ARM/ARMCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMCodeEmitter.cpp
3684
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCMCAsmInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp
4669 3685
 
4670
-libllvmtargetarm_la-ARMConstantIslandPass.lo: llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
4671
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMConstantIslandPass.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMConstantIslandPass.Tpo -c -o libllvmtargetarm_la-ARMConstantIslandPass.lo `test -f 'llvm/lib/Target/ARM/ARMConstantIslandPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
4672
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMConstantIslandPass.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMConstantIslandPass.Plo
3686
+libllvmpowerpccodegen_la-PPCMachOWriterInfo.lo: llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp
3687
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCMachOWriterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCMachOWriterInfo.Tpo -c -o libllvmpowerpccodegen_la-PPCMachOWriterInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp
3688
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCMachOWriterInfo.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCMachOWriterInfo.Plo
4673 3689
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4674
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMConstantIslandPass.cpp' object='libllvmtargetarm_la-ARMConstantIslandPass.lo' libtool=yes @AMDEPBACKSLASH@
3690
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp' object='libllvmpowerpccodegen_la-PPCMachOWriterInfo.lo' libtool=yes @AMDEPBACKSLASH@
4675 3691
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4676
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMConstantIslandPass.lo `test -f 'llvm/lib/Target/ARM/ARMConstantIslandPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
3692
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCMachOWriterInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp
4677 3693
 
4678
-libllvmtargetarm_la-ARMConstantPoolValue.lo: llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
4679
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMConstantPoolValue.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMConstantPoolValue.Tpo -c -o libllvmtargetarm_la-ARMConstantPoolValue.lo `test -f 'llvm/lib/Target/ARM/ARMConstantPoolValue.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
4680
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMConstantPoolValue.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMConstantPoolValue.Plo
3694
+libllvmpowerpccodegen_la-PPCPredicates.lo: llvm/lib/Target/PowerPC/PPCPredicates.cpp
3695
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCPredicates.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCPredicates.Tpo -c -o libllvmpowerpccodegen_la-PPCPredicates.lo `test -f 'llvm/lib/Target/PowerPC/PPCPredicates.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCPredicates.cpp
3696
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCPredicates.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCPredicates.Plo
4681 3697
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4682
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMConstantPoolValue.cpp' object='libllvmtargetarm_la-ARMConstantPoolValue.lo' libtool=yes @AMDEPBACKSLASH@
3698
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCPredicates.cpp' object='libllvmpowerpccodegen_la-PPCPredicates.lo' libtool=yes @AMDEPBACKSLASH@
4683 3699
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4684
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMConstantPoolValue.lo `test -f 'llvm/lib/Target/ARM/ARMConstantPoolValue.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
3700
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCPredicates.lo `test -f 'llvm/lib/Target/PowerPC/PPCPredicates.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCPredicates.cpp
4685 3701
 
4686
-libllvmtargetarm_la-ARMExpandPseudoInsts.lo: llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
4687
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMExpandPseudoInsts.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMExpandPseudoInsts.Tpo -c -o libllvmtargetarm_la-ARMExpandPseudoInsts.lo `test -f 'llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
4688
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMExpandPseudoInsts.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMExpandPseudoInsts.Plo
3702
+libllvmpowerpccodegen_la-PPCRegisterInfo.lo: llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
3703
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCRegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCRegisterInfo.Tpo -c -o libllvmpowerpccodegen_la-PPCRegisterInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
3704
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCRegisterInfo.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCRegisterInfo.Plo
4689 3705
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4690
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp' object='libllvmtargetarm_la-ARMExpandPseudoInsts.lo' libtool=yes @AMDEPBACKSLASH@
3706
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp' object='libllvmpowerpccodegen_la-PPCRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
4691 3707
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4692
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMExpandPseudoInsts.lo `test -f 'llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
3708
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCRegisterInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
4693 3709
 
4694
-libllvmtargetarm_la-ARMInstrInfo.lo: llvm/lib/Target/ARM/ARMInstrInfo.cpp
4695
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMInstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMInstrInfo.Tpo -c -o libllvmtargetarm_la-ARMInstrInfo.lo `test -f 'llvm/lib/Target/ARM/ARMInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMInstrInfo.cpp
4696
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMInstrInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMInstrInfo.Plo
3710
+libllvmpowerpccodegen_la-PPCSubtarget.lo: llvm/lib/Target/PowerPC/PPCSubtarget.cpp
3711
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCSubtarget.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCSubtarget.Tpo -c -o libllvmpowerpccodegen_la-PPCSubtarget.lo `test -f 'llvm/lib/Target/PowerPC/PPCSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCSubtarget.cpp
3712
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCSubtarget.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCSubtarget.Plo
4697 3713
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4698
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMInstrInfo.cpp' object='libllvmtargetarm_la-ARMInstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3714
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCSubtarget.cpp' object='libllvmpowerpccodegen_la-PPCSubtarget.lo' libtool=yes @AMDEPBACKSLASH@
4699 3715
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4700
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMInstrInfo.lo `test -f 'llvm/lib/Target/ARM/ARMInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMInstrInfo.cpp
3716
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCSubtarget.lo `test -f 'llvm/lib/Target/PowerPC/PPCSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCSubtarget.cpp
4701 3717
 
4702
-libllvmtargetarm_la-ARMISelDAGToDAG.lo: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
4703
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMISelDAGToDAG.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMISelDAGToDAG.Tpo -c -o libllvmtargetarm_la-ARMISelDAGToDAG.lo `test -f 'llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
4704
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMISelDAGToDAG.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMISelDAGToDAG.Plo
3718
+libllvmpowerpccodegen_la-PPCTargetMachine.lo: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
3719
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PPCTargetMachine.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PPCTargetMachine.Tpo -c -o libllvmpowerpccodegen_la-PPCTargetMachine.lo `test -f 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
3720
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PPCTargetMachine.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PPCTargetMachine.Plo
4705 3721
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4706
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp' object='libllvmtargetarm_la-ARMISelDAGToDAG.lo' libtool=yes @AMDEPBACKSLASH@
3722
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCTargetMachine.cpp' object='libllvmpowerpccodegen_la-PPCTargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
4707 3723
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4708
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMISelDAGToDAG.lo `test -f 'llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
3724
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PPCTargetMachine.lo `test -f 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
4709 3725
 
4710
-libllvmtargetarm_la-ARMISelLowering.lo: llvm/lib/Target/ARM/ARMISelLowering.cpp
4711
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMISelLowering.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMISelLowering.Tpo -c -o libllvmtargetarm_la-ARMISelLowering.lo `test -f 'llvm/lib/Target/ARM/ARMISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMISelLowering.cpp
4712
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMISelLowering.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMISelLowering.Plo
3726
+libllvmpowerpccodegen_la-PowerPCTargetInfo.lo: llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
3727
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-PowerPCTargetInfo.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-PowerPCTargetInfo.Tpo -c -o libllvmpowerpccodegen_la-PowerPCTargetInfo.lo `test -f 'llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
3728
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-PowerPCTargetInfo.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-PowerPCTargetInfo.Plo
4713 3729
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4714
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMISelLowering.cpp' object='libllvmtargetarm_la-ARMISelLowering.lo' libtool=yes @AMDEPBACKSLASH@
3730
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp' object='libllvmpowerpccodegen_la-PowerPCTargetInfo.lo' libtool=yes @AMDEPBACKSLASH@
4715 3731
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4716
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMISelLowering.lo `test -f 'llvm/lib/Target/ARM/ARMISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMISelLowering.cpp
3732
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-PowerPCTargetInfo.lo `test -f 'llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
4717 3733
 
4718
-libllvmtargetarm_la-ARMJITInfo.lo: llvm/lib/Target/ARM/ARMJITInfo.cpp
4719
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMJITInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMJITInfo.Tpo -c -o libllvmtargetarm_la-ARMJITInfo.lo `test -f 'llvm/lib/Target/ARM/ARMJITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMJITInfo.cpp
4720
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMJITInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMJITInfo.Plo
3734
+libllvmpowerpccodegen_la-TargetMachOWriterInfo.lo: llvm/lib/Target/TargetMachOWriterInfo.cpp
3735
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmpowerpccodegen_la-TargetMachOWriterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmpowerpccodegen_la-TargetMachOWriterInfo.Tpo -c -o libllvmpowerpccodegen_la-TargetMachOWriterInfo.lo `test -f 'llvm/lib/Target/TargetMachOWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetMachOWriterInfo.cpp
3736
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmpowerpccodegen_la-TargetMachOWriterInfo.Tpo $(DEPDIR)/libllvmpowerpccodegen_la-TargetMachOWriterInfo.Plo
4721 3737
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4722
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMJITInfo.cpp' object='libllvmtargetarm_la-ARMJITInfo.lo' libtool=yes @AMDEPBACKSLASH@
3738
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetMachOWriterInfo.cpp' object='libllvmpowerpccodegen_la-TargetMachOWriterInfo.lo' libtool=yes @AMDEPBACKSLASH@
4723 3739
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4724
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMJITInfo.lo `test -f 'llvm/lib/Target/ARM/ARMJITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMJITInfo.cpp
3740
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmpowerpccodegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmpowerpccodegen_la-TargetMachOWriterInfo.lo `test -f 'llvm/lib/Target/TargetMachOWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetMachOWriterInfo.cpp
4725 3741
 
4726
-libllvmtargetarm_la-ARMLoadStoreOptimizer.lo: llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
4727
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMLoadStoreOptimizer.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMLoadStoreOptimizer.Tpo -c -o libllvmtargetarm_la-ARMLoadStoreOptimizer.lo `test -f 'llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
4728
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMLoadStoreOptimizer.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMLoadStoreOptimizer.Plo
3742
+APSInt.lo: llvm/lib/Support/APSInt.cpp
3743
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT APSInt.lo -MD -MP -MF $(DEPDIR)/APSInt.Tpo -c -o APSInt.lo `test -f 'llvm/lib/Support/APSInt.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APSInt.cpp
3744
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/APSInt.Tpo $(DEPDIR)/APSInt.Plo
4729 3745
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4730
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp' object='libllvmtargetarm_la-ARMLoadStoreOptimizer.lo' libtool=yes @AMDEPBACKSLASH@
3746
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/APSInt.cpp' object='APSInt.lo' libtool=yes @AMDEPBACKSLASH@
4731 3747
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4732
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMLoadStoreOptimizer.lo `test -f 'llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
3748
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o APSInt.lo `test -f 'llvm/lib/Support/APSInt.cpp' || echo '$(srcdir)/'`llvm/lib/Support/APSInt.cpp
4733 3749
 
4734
-libllvmtargetarm_la-ARMMCAsmInfo.lo: llvm/lib/Target/ARM/ARMMCAsmInfo.cpp
4735
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMMCAsmInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMMCAsmInfo.Tpo -c -o libllvmtargetarm_la-ARMMCAsmInfo.lo `test -f 'llvm/lib/Target/ARM/ARMMCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMMCAsmInfo.cpp
4736
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMMCAsmInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMMCAsmInfo.Plo
3750
+DeltaAlgorithm.lo: llvm/lib/Support/DeltaAlgorithm.cpp
3751
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DeltaAlgorithm.lo -MD -MP -MF $(DEPDIR)/DeltaAlgorithm.Tpo -c -o DeltaAlgorithm.lo `test -f 'llvm/lib/Support/DeltaAlgorithm.cpp' || echo '$(srcdir)/'`llvm/lib/Support/DeltaAlgorithm.cpp
3752
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DeltaAlgorithm.Tpo $(DEPDIR)/DeltaAlgorithm.Plo
4737 3753
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4738
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMMCAsmInfo.cpp' object='libllvmtargetarm_la-ARMMCAsmInfo.lo' libtool=yes @AMDEPBACKSLASH@
3754
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/DeltaAlgorithm.cpp' object='DeltaAlgorithm.lo' libtool=yes @AMDEPBACKSLASH@
4739 3755
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4740
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMMCAsmInfo.lo `test -f 'llvm/lib/Target/ARM/ARMMCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMMCAsmInfo.cpp
3756
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DeltaAlgorithm.lo `test -f 'llvm/lib/Support/DeltaAlgorithm.cpp' || echo '$(srcdir)/'`llvm/lib/Support/DeltaAlgorithm.cpp
4741 3757
 
4742
-libllvmtargetarm_la-ARMRegisterInfo.lo: llvm/lib/Target/ARM/ARMRegisterInfo.cpp
4743
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMRegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMRegisterInfo.Tpo -c -o libllvmtargetarm_la-ARMRegisterInfo.lo `test -f 'llvm/lib/Target/ARM/ARMRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMRegisterInfo.cpp
4744
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMRegisterInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMRegisterInfo.Plo
3758
+FileUtilities.lo: llvm/lib/Support/FileUtilities.cpp
3759
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FileUtilities.lo -MD -MP -MF $(DEPDIR)/FileUtilities.Tpo -c -o FileUtilities.lo `test -f 'llvm/lib/Support/FileUtilities.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FileUtilities.cpp
3760
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/FileUtilities.Tpo $(DEPDIR)/FileUtilities.Plo
4745 3761
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4746
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMRegisterInfo.cpp' object='libllvmtargetarm_la-ARMRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3762
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/FileUtilities.cpp' object='FileUtilities.lo' libtool=yes @AMDEPBACKSLASH@
4747 3763
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4748
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMRegisterInfo.lo `test -f 'llvm/lib/Target/ARM/ARMRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMRegisterInfo.cpp
3764
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FileUtilities.lo `test -f 'llvm/lib/Support/FileUtilities.cpp' || echo '$(srcdir)/'`llvm/lib/Support/FileUtilities.cpp
4749 3765
 
4750
-libllvmtargetarm_la-ARMSubtarget.lo: llvm/lib/Target/ARM/ARMSubtarget.cpp
4751
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMSubtarget.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMSubtarget.Tpo -c -o libllvmtargetarm_la-ARMSubtarget.lo `test -f 'llvm/lib/Target/ARM/ARMSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMSubtarget.cpp
4752
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMSubtarget.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMSubtarget.Plo
3766
+GraphWriter.lo: llvm/lib/Support/GraphWriter.cpp
3767
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT GraphWriter.lo -MD -MP -MF $(DEPDIR)/GraphWriter.Tpo -c -o GraphWriter.lo `test -f 'llvm/lib/Support/GraphWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Support/GraphWriter.cpp
3768
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/GraphWriter.Tpo $(DEPDIR)/GraphWriter.Plo
4753 3769
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4754
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMSubtarget.cpp' object='libllvmtargetarm_la-ARMSubtarget.lo' libtool=yes @AMDEPBACKSLASH@
3770
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/GraphWriter.cpp' object='GraphWriter.lo' libtool=yes @AMDEPBACKSLASH@
4755 3771
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4756
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMSubtarget.lo `test -f 'llvm/lib/Target/ARM/ARMSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMSubtarget.cpp
3772
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o GraphWriter.lo `test -f 'llvm/lib/Support/GraphWriter.cpp' || echo '$(srcdir)/'`llvm/lib/Support/GraphWriter.cpp
4757 3773
 
4758
-libllvmtargetarm_la-ARMTargetMachine.lo: llvm/lib/Target/ARM/ARMTargetMachine.cpp
4759
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMTargetMachine.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMTargetMachine.Tpo -c -o libllvmtargetarm_la-ARMTargetMachine.lo `test -f 'llvm/lib/Target/ARM/ARMTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMTargetMachine.cpp
4760
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMTargetMachine.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMTargetMachine.Plo
3774
+IsInf.lo: llvm/lib/Support/IsInf.cpp
3775
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IsInf.lo -MD -MP -MF $(DEPDIR)/IsInf.Tpo -c -o IsInf.lo `test -f 'llvm/lib/Support/IsInf.cpp' || echo '$(srcdir)/'`llvm/lib/Support/IsInf.cpp
3776
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/IsInf.Tpo $(DEPDIR)/IsInf.Plo
4761 3777
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4762
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/ARMTargetMachine.cpp' object='libllvmtargetarm_la-ARMTargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
3778
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/IsInf.cpp' object='IsInf.lo' libtool=yes @AMDEPBACKSLASH@
4763 3779
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4764
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMTargetMachine.lo `test -f 'llvm/lib/Target/ARM/ARMTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/ARMTargetMachine.cpp
3780
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IsInf.lo `test -f 'llvm/lib/Support/IsInf.cpp' || echo '$(srcdir)/'`llvm/lib/Support/IsInf.cpp
4765 3781
 
4766
-libllvmtargetarm_la-NEONMoveFix.lo: llvm/lib/Target/ARM/NEONMoveFix.cpp
4767
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-NEONMoveFix.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-NEONMoveFix.Tpo -c -o libllvmtargetarm_la-NEONMoveFix.lo `test -f 'llvm/lib/Target/ARM/NEONMoveFix.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/NEONMoveFix.cpp
4768
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-NEONMoveFix.Tpo $(DEPDIR)/libllvmtargetarm_la-NEONMoveFix.Plo
3782
+IsNAN.lo: llvm/lib/Support/IsNAN.cpp
3783
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IsNAN.lo -MD -MP -MF $(DEPDIR)/IsNAN.Tpo -c -o IsNAN.lo `test -f 'llvm/lib/Support/IsNAN.cpp' || echo '$(srcdir)/'`llvm/lib/Support/IsNAN.cpp
3784
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/IsNAN.Tpo $(DEPDIR)/IsNAN.Plo
4769 3785
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4770
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/NEONMoveFix.cpp' object='libllvmtargetarm_la-NEONMoveFix.lo' libtool=yes @AMDEPBACKSLASH@
3786
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/IsNAN.cpp' object='IsNAN.lo' libtool=yes @AMDEPBACKSLASH@
4771 3787
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4772
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-NEONMoveFix.lo `test -f 'llvm/lib/Target/ARM/NEONMoveFix.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/NEONMoveFix.cpp
3788
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IsNAN.lo `test -f 'llvm/lib/Support/IsNAN.cpp' || echo '$(srcdir)/'`llvm/lib/Support/IsNAN.cpp
4773 3789
 
4774
-libllvmtargetarm_la-NEONPreAllocPass.lo: llvm/lib/Target/ARM/NEONPreAllocPass.cpp
4775
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-NEONPreAllocPass.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-NEONPreAllocPass.Tpo -c -o libllvmtargetarm_la-NEONPreAllocPass.lo `test -f 'llvm/lib/Target/ARM/NEONPreAllocPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/NEONPreAllocPass.cpp
4776
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-NEONPreAllocPass.Tpo $(DEPDIR)/libllvmtargetarm_la-NEONPreAllocPass.Plo
3790
+MemoryObject.lo: llvm/lib/Support/MemoryObject.cpp
3791
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MemoryObject.lo -MD -MP -MF $(DEPDIR)/MemoryObject.Tpo -c -o MemoryObject.lo `test -f 'llvm/lib/Support/MemoryObject.cpp' || echo '$(srcdir)/'`llvm/lib/Support/MemoryObject.cpp
3792
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/MemoryObject.Tpo $(DEPDIR)/MemoryObject.Plo
4777 3793
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4778
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/NEONPreAllocPass.cpp' object='libllvmtargetarm_la-NEONPreAllocPass.lo' libtool=yes @AMDEPBACKSLASH@
3794
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/MemoryObject.cpp' object='MemoryObject.lo' libtool=yes @AMDEPBACKSLASH@
4779 3795
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4780
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-NEONPreAllocPass.lo `test -f 'llvm/lib/Target/ARM/NEONPreAllocPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/NEONPreAllocPass.cpp
3796
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MemoryObject.lo `test -f 'llvm/lib/Support/MemoryObject.cpp' || echo '$(srcdir)/'`llvm/lib/Support/MemoryObject.cpp
4781 3797
 
4782
-libllvmtargetarm_la-Thumb1InstrInfo.lo: llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
4783
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-Thumb1InstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-Thumb1InstrInfo.Tpo -c -o libllvmtargetarm_la-Thumb1InstrInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb1InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
4784
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-Thumb1InstrInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-Thumb1InstrInfo.Plo
3798
+PluginLoader.lo: llvm/lib/Support/PluginLoader.cpp
3799
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT PluginLoader.lo -MD -MP -MF $(DEPDIR)/PluginLoader.Tpo -c -o PluginLoader.lo `test -f 'llvm/lib/Support/PluginLoader.cpp' || echo '$(srcdir)/'`llvm/lib/Support/PluginLoader.cpp
3800
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/PluginLoader.Tpo $(DEPDIR)/PluginLoader.Plo
4785 3801
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4786
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb1InstrInfo.cpp' object='libllvmtargetarm_la-Thumb1InstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3802
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/PluginLoader.cpp' object='PluginLoader.lo' libtool=yes @AMDEPBACKSLASH@
4787 3803
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4788
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-Thumb1InstrInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb1InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
3804
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o PluginLoader.lo `test -f 'llvm/lib/Support/PluginLoader.cpp' || echo '$(srcdir)/'`llvm/lib/Support/PluginLoader.cpp
4789 3805
 
4790
-libllvmtargetarm_la-Thumb1RegisterInfo.lo: llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp
4791
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-Thumb1RegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-Thumb1RegisterInfo.Tpo -c -o libllvmtargetarm_la-Thumb1RegisterInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp
4792
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-Thumb1RegisterInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-Thumb1RegisterInfo.Plo
3806
+Regex.lo: llvm/lib/Support/Regex.cpp
3807
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Regex.lo -MD -MP -MF $(DEPDIR)/Regex.Tpo -c -o Regex.lo `test -f 'llvm/lib/Support/Regex.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Regex.cpp
3808
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Regex.Tpo $(DEPDIR)/Regex.Plo
4793 3809
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4794
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp' object='libllvmtargetarm_la-Thumb1RegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3810
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/Regex.cpp' object='Regex.lo' libtool=yes @AMDEPBACKSLASH@
4795 3811
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4796
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-Thumb1RegisterInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp
3812
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Regex.lo `test -f 'llvm/lib/Support/Regex.cpp' || echo '$(srcdir)/'`llvm/lib/Support/Regex.cpp
4797 3813
 
4798
-libllvmtargetarm_la-Thumb2ITBlockPass.lo: llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
4799
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-Thumb2ITBlockPass.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-Thumb2ITBlockPass.Tpo -c -o libllvmtargetarm_la-Thumb2ITBlockPass.lo `test -f 'llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
4800
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-Thumb2ITBlockPass.Tpo $(DEPDIR)/libllvmtargetarm_la-Thumb2ITBlockPass.Plo
3814
+SlowOperationInformer.lo: llvm/lib/Support/SlowOperationInformer.cpp
3815
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SlowOperationInformer.lo -MD -MP -MF $(DEPDIR)/SlowOperationInformer.Tpo -c -o SlowOperationInformer.lo `test -f 'llvm/lib/Support/SlowOperationInformer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SlowOperationInformer.cpp
3816
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SlowOperationInformer.Tpo $(DEPDIR)/SlowOperationInformer.Plo
4801 3817
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4802
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp' object='libllvmtargetarm_la-Thumb2ITBlockPass.lo' libtool=yes @AMDEPBACKSLASH@
3818
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/SlowOperationInformer.cpp' object='SlowOperationInformer.lo' libtool=yes @AMDEPBACKSLASH@
4803 3819
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4804
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-Thumb2ITBlockPass.lo `test -f 'llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
3820
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SlowOperationInformer.lo `test -f 'llvm/lib/Support/SlowOperationInformer.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SlowOperationInformer.cpp
4805 3821
 
4806
-libllvmtargetarm_la-Thumb2InstrInfo.lo: llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
4807
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-Thumb2InstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-Thumb2InstrInfo.Tpo -c -o libllvmtargetarm_la-Thumb2InstrInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb2InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
4808
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-Thumb2InstrInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-Thumb2InstrInfo.Plo
3822
+SourceMgr.lo: llvm/lib/Support/SourceMgr.cpp
3823
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SourceMgr.lo -MD -MP -MF $(DEPDIR)/SourceMgr.Tpo -c -o SourceMgr.lo `test -f 'llvm/lib/Support/SourceMgr.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SourceMgr.cpp
3824
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SourceMgr.Tpo $(DEPDIR)/SourceMgr.Plo
4809 3825
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4810
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb2InstrInfo.cpp' object='libllvmtargetarm_la-Thumb2InstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3826
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/SourceMgr.cpp' object='SourceMgr.lo' libtool=yes @AMDEPBACKSLASH@
4811 3827
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4812
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-Thumb2InstrInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb2InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
3828
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SourceMgr.lo `test -f 'llvm/lib/Support/SourceMgr.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SourceMgr.cpp
4813 3829
 
4814
-libllvmtargetarm_la-Thumb2RegisterInfo.lo: llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp
4815
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-Thumb2RegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-Thumb2RegisterInfo.Tpo -c -o libllvmtargetarm_la-Thumb2RegisterInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp
4816
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-Thumb2RegisterInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-Thumb2RegisterInfo.Plo
3830
+SystemUtils.lo: llvm/lib/Support/SystemUtils.cpp
3831
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SystemUtils.lo -MD -MP -MF $(DEPDIR)/SystemUtils.Tpo -c -o SystemUtils.lo `test -f 'llvm/lib/Support/SystemUtils.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SystemUtils.cpp
3832
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SystemUtils.Tpo $(DEPDIR)/SystemUtils.Plo
4817 3833
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4818
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp' object='libllvmtargetarm_la-Thumb2RegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3834
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/SystemUtils.cpp' object='SystemUtils.lo' libtool=yes @AMDEPBACKSLASH@
4819 3835
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4820
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-Thumb2RegisterInfo.lo `test -f 'llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp
3836
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SystemUtils.lo `test -f 'llvm/lib/Support/SystemUtils.cpp' || echo '$(srcdir)/'`llvm/lib/Support/SystemUtils.cpp
4821 3837
 
4822
-libllvmtargetarm_la-Thumb2SizeReduction.lo: llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
4823
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-Thumb2SizeReduction.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-Thumb2SizeReduction.Tpo -c -o libllvmtargetarm_la-Thumb2SizeReduction.lo `test -f 'llvm/lib/Target/ARM/Thumb2SizeReduction.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
4824
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-Thumb2SizeReduction.Tpo $(DEPDIR)/libllvmtargetarm_la-Thumb2SizeReduction.Plo
3838
+raw_os_ostream.lo: llvm/lib/Support/raw_os_ostream.cpp
3839
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raw_os_ostream.lo -MD -MP -MF $(DEPDIR)/raw_os_ostream.Tpo -c -o raw_os_ostream.lo `test -f 'llvm/lib/Support/raw_os_ostream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/raw_os_ostream.cpp
3840
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/raw_os_ostream.Tpo $(DEPDIR)/raw_os_ostream.Plo
4825 3841
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4826
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/Thumb2SizeReduction.cpp' object='libllvmtargetarm_la-Thumb2SizeReduction.lo' libtool=yes @AMDEPBACKSLASH@
3842
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Support/raw_os_ostream.cpp' object='raw_os_ostream.lo' libtool=yes @AMDEPBACKSLASH@
4827 3843
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4828
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-Thumb2SizeReduction.lo `test -f 'llvm/lib/Target/ARM/Thumb2SizeReduction.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
3844
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raw_os_ostream.lo `test -f 'llvm/lib/Support/raw_os_ostream.cpp' || echo '$(srcdir)/'`llvm/lib/Support/raw_os_ostream.cpp
4829 3845
 
4830
-libllvmtargetarm_la-ARMTargetInfo.lo: llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
4831
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetarm_la-ARMTargetInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetarm_la-ARMTargetInfo.Tpo -c -o libllvmtargetarm_la-ARMTargetInfo.lo `test -f 'llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
4832
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetarm_la-ARMTargetInfo.Tpo $(DEPDIR)/libllvmtargetarm_la-ARMTargetInfo.Plo
3846
+Alarm.lo: llvm/lib/System/Alarm.cpp
3847
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Alarm.lo -MD -MP -MF $(DEPDIR)/Alarm.Tpo -c -o Alarm.lo `test -f 'llvm/lib/System/Alarm.cpp' || echo '$(srcdir)/'`llvm/lib/System/Alarm.cpp
3848
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Alarm.Tpo $(DEPDIR)/Alarm.Plo
4833 3849
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4834
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp' object='libllvmtargetarm_la-ARMTargetInfo.lo' libtool=yes @AMDEPBACKSLASH@
3850
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Alarm.cpp' object='Alarm.lo' libtool=yes @AMDEPBACKSLASH@
4835 3851
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4836
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetarm_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetarm_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetarm_la-ARMTargetInfo.lo `test -f 'llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
3852
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Alarm.lo `test -f 'llvm/lib/System/Alarm.cpp' || echo '$(srcdir)/'`llvm/lib/System/Alarm.cpp
4837 3853
 
4838
-libllvmtargetppc_la-PPCBranchSelector.lo: llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
4839
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCBranchSelector.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCBranchSelector.Tpo -c -o libllvmtargetppc_la-PPCBranchSelector.lo `test -f 'llvm/lib/Target/PowerPC/PPCBranchSelector.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
4840
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCBranchSelector.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCBranchSelector.Plo
3854
+Atomic.lo: llvm/lib/System/Atomic.cpp
3855
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Atomic.lo -MD -MP -MF $(DEPDIR)/Atomic.Tpo -c -o Atomic.lo `test -f 'llvm/lib/System/Atomic.cpp' || echo '$(srcdir)/'`llvm/lib/System/Atomic.cpp
3856
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Atomic.Tpo $(DEPDIR)/Atomic.Plo
4841 3857
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4842
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCBranchSelector.cpp' object='libllvmtargetppc_la-PPCBranchSelector.lo' libtool=yes @AMDEPBACKSLASH@
3858
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Atomic.cpp' object='Atomic.lo' libtool=yes @AMDEPBACKSLASH@
4843 3859
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4844
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCBranchSelector.lo `test -f 'llvm/lib/Target/PowerPC/PPCBranchSelector.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
3860
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Atomic.lo `test -f 'llvm/lib/System/Atomic.cpp' || echo '$(srcdir)/'`llvm/lib/System/Atomic.cpp
4845 3861
 
4846
-libllvmtargetppc_la-PPCCodeEmitter.lo: llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
4847
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCCodeEmitter.Tpo -c -o libllvmtargetppc_la-PPCCodeEmitter.lo `test -f 'llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
4848
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCCodeEmitter.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCCodeEmitter.Plo
3862
+Disassembler.lo: llvm/lib/System/Disassembler.cpp
3863
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Disassembler.lo -MD -MP -MF $(DEPDIR)/Disassembler.Tpo -c -o Disassembler.lo `test -f 'llvm/lib/System/Disassembler.cpp' || echo '$(srcdir)/'`llvm/lib/System/Disassembler.cpp
3864
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Disassembler.Tpo $(DEPDIR)/Disassembler.Plo
4849 3865
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4850
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp' object='libllvmtargetppc_la-PPCCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
3866
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Disassembler.cpp' object='Disassembler.lo' libtool=yes @AMDEPBACKSLASH@
4851 3867
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4852
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCCodeEmitter.lo `test -f 'llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
3868
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Disassembler.lo `test -f 'llvm/lib/System/Disassembler.cpp' || echo '$(srcdir)/'`llvm/lib/System/Disassembler.cpp
4853 3869
 
4854
-libllvmtargetppc_la-PPCHazardRecognizers.lo: llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
4855
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCHazardRecognizers.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCHazardRecognizers.Tpo -c -o libllvmtargetppc_la-PPCHazardRecognizers.lo `test -f 'llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
4856
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCHazardRecognizers.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCHazardRecognizers.Plo
3870
+DynamicLibrary.lo: llvm/lib/System/DynamicLibrary.cpp
3871
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DynamicLibrary.lo -MD -MP -MF $(DEPDIR)/DynamicLibrary.Tpo -c -o DynamicLibrary.lo `test -f 'llvm/lib/System/DynamicLibrary.cpp' || echo '$(srcdir)/'`llvm/lib/System/DynamicLibrary.cpp
3872
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DynamicLibrary.Tpo $(DEPDIR)/DynamicLibrary.Plo
4857 3873
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4858
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp' object='libllvmtargetppc_la-PPCHazardRecognizers.lo' libtool=yes @AMDEPBACKSLASH@
3874
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/DynamicLibrary.cpp' object='DynamicLibrary.lo' libtool=yes @AMDEPBACKSLASH@
4859 3875
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4860
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCHazardRecognizers.lo `test -f 'llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
3876
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DynamicLibrary.lo `test -f 'llvm/lib/System/DynamicLibrary.cpp' || echo '$(srcdir)/'`llvm/lib/System/DynamicLibrary.cpp
4861 3877
 
4862
-libllvmtargetppc_la-PPCInstrInfo.lo: llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
4863
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCInstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCInstrInfo.Tpo -c -o libllvmtargetppc_la-PPCInstrInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
4864
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCInstrInfo.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCInstrInfo.Plo
3878
+Errno.lo: llvm/lib/System/Errno.cpp
3879
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Errno.lo -MD -MP -MF $(DEPDIR)/Errno.Tpo -c -o Errno.lo `test -f 'llvm/lib/System/Errno.cpp' || echo '$(srcdir)/'`llvm/lib/System/Errno.cpp
3880
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Errno.Tpo $(DEPDIR)/Errno.Plo
4865 3881
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4866
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCInstrInfo.cpp' object='libllvmtargetppc_la-PPCInstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
3882
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Errno.cpp' object='Errno.lo' libtool=yes @AMDEPBACKSLASH@
4867 3883
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4868
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCInstrInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCInstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
3884
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Errno.lo `test -f 'llvm/lib/System/Errno.cpp' || echo '$(srcdir)/'`llvm/lib/System/Errno.cpp
4869 3885
 
4870
-libllvmtargetppc_la-PPCISelDAGToDAG.lo: llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
4871
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCISelDAGToDAG.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCISelDAGToDAG.Tpo -c -o libllvmtargetppc_la-PPCISelDAGToDAG.lo `test -f 'llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
4872
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCISelDAGToDAG.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCISelDAGToDAG.Plo
3886
+Host.lo: llvm/lib/System/Host.cpp
3887
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Host.lo -MD -MP -MF $(DEPDIR)/Host.Tpo -c -o Host.lo `test -f 'llvm/lib/System/Host.cpp' || echo '$(srcdir)/'`llvm/lib/System/Host.cpp
3888
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Host.Tpo $(DEPDIR)/Host.Plo
4873 3889
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4874
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp' object='libllvmtargetppc_la-PPCISelDAGToDAG.lo' libtool=yes @AMDEPBACKSLASH@
3890
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Host.cpp' object='Host.lo' libtool=yes @AMDEPBACKSLASH@
4875 3891
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4876
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCISelDAGToDAG.lo `test -f 'llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
3892
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Host.lo `test -f 'llvm/lib/System/Host.cpp' || echo '$(srcdir)/'`llvm/lib/System/Host.cpp
4877 3893
 
4878
-libllvmtargetppc_la-PPCISelLowering.lo: llvm/lib/Target/PowerPC/PPCISelLowering.cpp
4879
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCISelLowering.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCISelLowering.Tpo -c -o libllvmtargetppc_la-PPCISelLowering.lo `test -f 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCISelLowering.cpp
4880
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCISelLowering.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCISelLowering.Plo
3894
+IncludeFile.lo: llvm/lib/System/IncludeFile.cpp
3895
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IncludeFile.lo -MD -MP -MF $(DEPDIR)/IncludeFile.Tpo -c -o IncludeFile.lo `test -f 'llvm/lib/System/IncludeFile.cpp' || echo '$(srcdir)/'`llvm/lib/System/IncludeFile.cpp
3896
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/IncludeFile.Tpo $(DEPDIR)/IncludeFile.Plo
4881 3897
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4882
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCISelLowering.cpp' object='libllvmtargetppc_la-PPCISelLowering.lo' libtool=yes @AMDEPBACKSLASH@
3898
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/IncludeFile.cpp' object='IncludeFile.lo' libtool=yes @AMDEPBACKSLASH@
4883 3899
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4884
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCISelLowering.lo `test -f 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCISelLowering.cpp
3900
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IncludeFile.lo `test -f 'llvm/lib/System/IncludeFile.cpp' || echo '$(srcdir)/'`llvm/lib/System/IncludeFile.cpp
4885 3901
 
4886
-libllvmtargetppc_la-PPCJITInfo.lo: llvm/lib/Target/PowerPC/PPCJITInfo.cpp
4887
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCJITInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCJITInfo.Tpo -c -o libllvmtargetppc_la-PPCJITInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCJITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCJITInfo.cpp
4888
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCJITInfo.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCJITInfo.Plo
3902
+Memory.lo: llvm/lib/System/Memory.cpp
3903
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Memory.lo -MD -MP -MF $(DEPDIR)/Memory.Tpo -c -o Memory.lo `test -f 'llvm/lib/System/Memory.cpp' || echo '$(srcdir)/'`llvm/lib/System/Memory.cpp
3904
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Memory.Tpo $(DEPDIR)/Memory.Plo
4889 3905
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4890
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCJITInfo.cpp' object='libllvmtargetppc_la-PPCJITInfo.lo' libtool=yes @AMDEPBACKSLASH@
3906
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Memory.cpp' object='Memory.lo' libtool=yes @AMDEPBACKSLASH@
4891 3907
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4892
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCJITInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCJITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCJITInfo.cpp
3908
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Memory.lo `test -f 'llvm/lib/System/Memory.cpp' || echo '$(srcdir)/'`llvm/lib/System/Memory.cpp
4893 3909
 
4894
-libllvmtargetppc_la-PPCMachOWriterInfo.lo: llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp
4895
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCMachOWriterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCMachOWriterInfo.Tpo -c -o libllvmtargetppc_la-PPCMachOWriterInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp
4896
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCMachOWriterInfo.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCMachOWriterInfo.Plo
3910
+Mutex.lo: llvm/lib/System/Mutex.cpp
3911
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Mutex.lo -MD -MP -MF $(DEPDIR)/Mutex.Tpo -c -o Mutex.lo `test -f 'llvm/lib/System/Mutex.cpp' || echo '$(srcdir)/'`llvm/lib/System/Mutex.cpp
3912
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Mutex.Tpo $(DEPDIR)/Mutex.Plo
4897 3913
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4898
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp' object='libllvmtargetppc_la-PPCMachOWriterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3914
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Mutex.cpp' object='Mutex.lo' libtool=yes @AMDEPBACKSLASH@
4899 3915
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4900
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCMachOWriterInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCMachOWriterInfo.cpp
3916
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Mutex.lo `test -f 'llvm/lib/System/Mutex.cpp' || echo '$(srcdir)/'`llvm/lib/System/Mutex.cpp
4901 3917
 
4902
-libllvmtargetppc_la-PPCMCAsmInfo.lo: llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp
4903
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCMCAsmInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCMCAsmInfo.Tpo -c -o libllvmtargetppc_la-PPCMCAsmInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp
4904
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCMCAsmInfo.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCMCAsmInfo.Plo
3918
+Path.lo: llvm/lib/System/Path.cpp
3919
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Path.lo -MD -MP -MF $(DEPDIR)/Path.Tpo -c -o Path.lo `test -f 'llvm/lib/System/Path.cpp' || echo '$(srcdir)/'`llvm/lib/System/Path.cpp
3920
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Path.Tpo $(DEPDIR)/Path.Plo
4905 3921
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4906
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp' object='libllvmtargetppc_la-PPCMCAsmInfo.lo' libtool=yes @AMDEPBACKSLASH@
3922
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Path.cpp' object='Path.lo' libtool=yes @AMDEPBACKSLASH@
4907 3923
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4908
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCMCAsmInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp
3924
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Path.lo `test -f 'llvm/lib/System/Path.cpp' || echo '$(srcdir)/'`llvm/lib/System/Path.cpp
4909 3925
 
4910
-libllvmtargetppc_la-PPCPredicates.lo: llvm/lib/Target/PowerPC/PPCPredicates.cpp
4911
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCPredicates.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCPredicates.Tpo -c -o libllvmtargetppc_la-PPCPredicates.lo `test -f 'llvm/lib/Target/PowerPC/PPCPredicates.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCPredicates.cpp
4912
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCPredicates.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCPredicates.Plo
3926
+Process.lo: llvm/lib/System/Process.cpp
3927
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Process.lo -MD -MP -MF $(DEPDIR)/Process.Tpo -c -o Process.lo `test -f 'llvm/lib/System/Process.cpp' || echo '$(srcdir)/'`llvm/lib/System/Process.cpp
3928
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Process.Tpo $(DEPDIR)/Process.Plo
4913 3929
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4914
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCPredicates.cpp' object='libllvmtargetppc_la-PPCPredicates.lo' libtool=yes @AMDEPBACKSLASH@
3930
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Process.cpp' object='Process.lo' libtool=yes @AMDEPBACKSLASH@
4915 3931
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4916
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCPredicates.lo `test -f 'llvm/lib/Target/PowerPC/PPCPredicates.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCPredicates.cpp
3932
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Process.lo `test -f 'llvm/lib/System/Process.cpp' || echo '$(srcdir)/'`llvm/lib/System/Process.cpp
4917 3933
 
4918
-libllvmtargetppc_la-PPCRegisterInfo.lo: llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
4919
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCRegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCRegisterInfo.Tpo -c -o libllvmtargetppc_la-PPCRegisterInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
4920
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCRegisterInfo.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCRegisterInfo.Plo
3934
+Program.lo: llvm/lib/System/Program.cpp
3935
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Program.lo -MD -MP -MF $(DEPDIR)/Program.Tpo -c -o Program.lo `test -f 'llvm/lib/System/Program.cpp' || echo '$(srcdir)/'`llvm/lib/System/Program.cpp
3936
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Program.Tpo $(DEPDIR)/Program.Plo
4921 3937
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4922
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp' object='libllvmtargetppc_la-PPCRegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3938
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Program.cpp' object='Program.lo' libtool=yes @AMDEPBACKSLASH@
4923 3939
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4924
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCRegisterInfo.lo `test -f 'llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
3940
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Program.lo `test -f 'llvm/lib/System/Program.cpp' || echo '$(srcdir)/'`llvm/lib/System/Program.cpp
4925 3941
 
4926
-libllvmtargetppc_la-PPCSubtarget.lo: llvm/lib/Target/PowerPC/PPCSubtarget.cpp
4927
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCSubtarget.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCSubtarget.Tpo -c -o libllvmtargetppc_la-PPCSubtarget.lo `test -f 'llvm/lib/Target/PowerPC/PPCSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCSubtarget.cpp
4928
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCSubtarget.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCSubtarget.Plo
3942
+RWMutex.lo: llvm/lib/System/RWMutex.cpp
3943
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT RWMutex.lo -MD -MP -MF $(DEPDIR)/RWMutex.Tpo -c -o RWMutex.lo `test -f 'llvm/lib/System/RWMutex.cpp' || echo '$(srcdir)/'`llvm/lib/System/RWMutex.cpp
3944
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/RWMutex.Tpo $(DEPDIR)/RWMutex.Plo
4929 3945
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4930
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCSubtarget.cpp' object='libllvmtargetppc_la-PPCSubtarget.lo' libtool=yes @AMDEPBACKSLASH@
3946
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/RWMutex.cpp' object='RWMutex.lo' libtool=yes @AMDEPBACKSLASH@
4931 3947
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4932
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCSubtarget.lo `test -f 'llvm/lib/Target/PowerPC/PPCSubtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCSubtarget.cpp
3948
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o RWMutex.lo `test -f 'llvm/lib/System/RWMutex.cpp' || echo '$(srcdir)/'`llvm/lib/System/RWMutex.cpp
4933 3949
 
4934
-libllvmtargetppc_la-PPCTargetMachine.lo: llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
4935
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PPCTargetMachine.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PPCTargetMachine.Tpo -c -o libllvmtargetppc_la-PPCTargetMachine.lo `test -f 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
4936
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PPCTargetMachine.Tpo $(DEPDIR)/libllvmtargetppc_la-PPCTargetMachine.Plo
3950
+Signals.lo: llvm/lib/System/Signals.cpp
3951
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Signals.lo -MD -MP -MF $(DEPDIR)/Signals.Tpo -c -o Signals.lo `test -f 'llvm/lib/System/Signals.cpp' || echo '$(srcdir)/'`llvm/lib/System/Signals.cpp
3952
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Signals.Tpo $(DEPDIR)/Signals.Plo
4937 3953
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4938
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/PPCTargetMachine.cpp' object='libllvmtargetppc_la-PPCTargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
3954
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Signals.cpp' object='Signals.lo' libtool=yes @AMDEPBACKSLASH@
4939 3955
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4940
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PPCTargetMachine.lo `test -f 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
3956
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Signals.lo `test -f 'llvm/lib/System/Signals.cpp' || echo '$(srcdir)/'`llvm/lib/System/Signals.cpp
4941 3957
 
4942
-libllvmtargetppc_la-PowerPCTargetInfo.lo: llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
4943
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetppc_la-PowerPCTargetInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetppc_la-PowerPCTargetInfo.Tpo -c -o libllvmtargetppc_la-PowerPCTargetInfo.lo `test -f 'llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
4944
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetppc_la-PowerPCTargetInfo.Tpo $(DEPDIR)/libllvmtargetppc_la-PowerPCTargetInfo.Plo
3958
+ThreadLocal.lo: llvm/lib/System/ThreadLocal.cpp
3959
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ThreadLocal.lo -MD -MP -MF $(DEPDIR)/ThreadLocal.Tpo -c -o ThreadLocal.lo `test -f 'llvm/lib/System/ThreadLocal.cpp' || echo '$(srcdir)/'`llvm/lib/System/ThreadLocal.cpp
3960
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ThreadLocal.Tpo $(DEPDIR)/ThreadLocal.Plo
4945 3961
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4946
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp' object='libllvmtargetppc_la-PowerPCTargetInfo.lo' libtool=yes @AMDEPBACKSLASH@
3962
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/ThreadLocal.cpp' object='ThreadLocal.lo' libtool=yes @AMDEPBACKSLASH@
4947 3963
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4948
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetppc_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetppc_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetppc_la-PowerPCTargetInfo.lo `test -f 'llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
3964
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ThreadLocal.lo `test -f 'llvm/lib/System/ThreadLocal.cpp' || echo '$(srcdir)/'`llvm/lib/System/ThreadLocal.cpp
4949 3965
 
4950
-libllvmtargetx86_la-X86CodeEmitter.lo: llvm/lib/Target/X86/X86CodeEmitter.cpp
4951
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86CodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86CodeEmitter.Tpo -c -o libllvmtargetx86_la-X86CodeEmitter.lo `test -f 'llvm/lib/Target/X86/X86CodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86CodeEmitter.cpp
4952
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86CodeEmitter.Tpo $(DEPDIR)/libllvmtargetx86_la-X86CodeEmitter.Plo
3966
+Threading.lo: llvm/lib/System/Threading.cpp
3967
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Threading.lo -MD -MP -MF $(DEPDIR)/Threading.Tpo -c -o Threading.lo `test -f 'llvm/lib/System/Threading.cpp' || echo '$(srcdir)/'`llvm/lib/System/Threading.cpp
3968
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/Threading.Tpo $(DEPDIR)/Threading.Plo
4953 3969
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4954
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86CodeEmitter.cpp' object='libllvmtargetx86_la-X86CodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
3970
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/Threading.cpp' object='Threading.lo' libtool=yes @AMDEPBACKSLASH@
4955 3971
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4956
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86CodeEmitter.lo `test -f 'llvm/lib/Target/X86/X86CodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86CodeEmitter.cpp
3972
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Threading.lo `test -f 'llvm/lib/System/Threading.cpp' || echo '$(srcdir)/'`llvm/lib/System/Threading.cpp
4957 3973
 
4958
-libllvmtargetx86_la-X86ELFWriterInfo.lo: llvm/lib/Target/X86/X86ELFWriterInfo.cpp
4959
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86ELFWriterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86ELFWriterInfo.Tpo -c -o libllvmtargetx86_la-X86ELFWriterInfo.lo `test -f 'llvm/lib/Target/X86/X86ELFWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ELFWriterInfo.cpp
4960
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86ELFWriterInfo.Tpo $(DEPDIR)/libllvmtargetx86_la-X86ELFWriterInfo.Plo
3974
+TimeValue.lo: llvm/lib/System/TimeValue.cpp
3975
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TimeValue.lo -MD -MP -MF $(DEPDIR)/TimeValue.Tpo -c -o TimeValue.lo `test -f 'llvm/lib/System/TimeValue.cpp' || echo '$(srcdir)/'`llvm/lib/System/TimeValue.cpp
3976
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TimeValue.Tpo $(DEPDIR)/TimeValue.Plo
4961 3977
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4962
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86ELFWriterInfo.cpp' object='libllvmtargetx86_la-X86ELFWriterInfo.lo' libtool=yes @AMDEPBACKSLASH@
3978
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/System/TimeValue.cpp' object='TimeValue.lo' libtool=yes @AMDEPBACKSLASH@
4963 3979
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4964
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86ELFWriterInfo.lo `test -f 'llvm/lib/Target/X86/X86ELFWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ELFWriterInfo.cpp
3980
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TimeValue.lo `test -f 'llvm/lib/System/TimeValue.cpp' || echo '$(srcdir)/'`llvm/lib/System/TimeValue.cpp
4965 3981
 
4966
-libllvmtargetx86_la-X86FloatingPoint.lo: llvm/lib/Target/X86/X86FloatingPoint.cpp
4967
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86FloatingPoint.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86FloatingPoint.Tpo -c -o libllvmtargetx86_la-X86FloatingPoint.lo `test -f 'llvm/lib/Target/X86/X86FloatingPoint.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FloatingPoint.cpp
4968
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86FloatingPoint.Tpo $(DEPDIR)/libllvmtargetx86_la-X86FloatingPoint.Plo
3982
+libllvmx86codegen_la-DeadMachineInstructionElim.lo: llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
3983
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-DeadMachineInstructionElim.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-DeadMachineInstructionElim.Tpo -c -o libllvmx86codegen_la-DeadMachineInstructionElim.lo `test -f 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
3984
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-DeadMachineInstructionElim.Tpo $(DEPDIR)/libllvmx86codegen_la-DeadMachineInstructionElim.Plo
4969 3985
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4970
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86FloatingPoint.cpp' object='libllvmtargetx86_la-X86FloatingPoint.lo' libtool=yes @AMDEPBACKSLASH@
3986
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/DeadMachineInstructionElim.cpp' object='libllvmx86codegen_la-DeadMachineInstructionElim.lo' libtool=yes @AMDEPBACKSLASH@
4971 3987
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4972
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86FloatingPoint.lo `test -f 'llvm/lib/Target/X86/X86FloatingPoint.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FloatingPoint.cpp
3988
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-DeadMachineInstructionElim.lo `test -f 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
4973 3989
 
4974
-libllvmtargetx86_la-X86FloatingPointRegKill.lo: llvm/lib/Target/X86/X86FloatingPointRegKill.cpp
4975
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86FloatingPointRegKill.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86FloatingPointRegKill.Tpo -c -o libllvmtargetx86_la-X86FloatingPointRegKill.lo `test -f 'llvm/lib/Target/X86/X86FloatingPointRegKill.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FloatingPointRegKill.cpp
4976
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86FloatingPointRegKill.Tpo $(DEPDIR)/libllvmtargetx86_la-X86FloatingPointRegKill.Plo
3990
+libllvmx86codegen_la-MachineDominators.lo: llvm/lib/CodeGen/MachineDominators.cpp
3991
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-MachineDominators.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-MachineDominators.Tpo -c -o libllvmx86codegen_la-MachineDominators.lo `test -f 'llvm/lib/CodeGen/MachineDominators.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineDominators.cpp
3992
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-MachineDominators.Tpo $(DEPDIR)/libllvmx86codegen_la-MachineDominators.Plo
4977 3993
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4978
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86FloatingPointRegKill.cpp' object='libllvmtargetx86_la-X86FloatingPointRegKill.lo' libtool=yes @AMDEPBACKSLASH@
3994
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineDominators.cpp' object='libllvmx86codegen_la-MachineDominators.lo' libtool=yes @AMDEPBACKSLASH@
4979 3995
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4980
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86FloatingPointRegKill.lo `test -f 'llvm/lib/Target/X86/X86FloatingPointRegKill.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FloatingPointRegKill.cpp
3996
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-MachineDominators.lo `test -f 'llvm/lib/CodeGen/MachineDominators.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineDominators.cpp
4981 3997
 
4982
-libllvmtargetx86_la-X86ISelDAGToDAG.lo: llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
4983
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86ISelDAGToDAG.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86ISelDAGToDAG.Tpo -c -o libllvmtargetx86_la-X86ISelDAGToDAG.lo `test -f 'llvm/lib/Target/X86/X86ISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
4984
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86ISelDAGToDAG.Tpo $(DEPDIR)/libllvmtargetx86_la-X86ISelDAGToDAG.Plo
3998
+libllvmx86codegen_la-MachineLoopInfo.lo: llvm/lib/CodeGen/MachineLoopInfo.cpp
3999
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-MachineLoopInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-MachineLoopInfo.Tpo -c -o libllvmx86codegen_la-MachineLoopInfo.lo `test -f 'llvm/lib/CodeGen/MachineLoopInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineLoopInfo.cpp
4000
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-MachineLoopInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-MachineLoopInfo.Plo
4985 4001
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4986
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86ISelDAGToDAG.cpp' object='libllvmtargetx86_la-X86ISelDAGToDAG.lo' libtool=yes @AMDEPBACKSLASH@
4002
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineLoopInfo.cpp' object='libllvmx86codegen_la-MachineLoopInfo.lo' libtool=yes @AMDEPBACKSLASH@
4987 4003
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4988
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86ISelDAGToDAG.lo `test -f 'llvm/lib/Target/X86/X86ISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
4004
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-MachineLoopInfo.lo `test -f 'llvm/lib/CodeGen/MachineLoopInfo.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineLoopInfo.cpp
4989 4005
 
4990
-libllvmtargetx86_la-X86ISelLowering.lo: llvm/lib/Target/X86/X86ISelLowering.cpp
4991
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86ISelLowering.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86ISelLowering.Tpo -c -o libllvmtargetx86_la-X86ISelLowering.lo `test -f 'llvm/lib/Target/X86/X86ISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ISelLowering.cpp
4992
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86ISelLowering.Tpo $(DEPDIR)/libllvmtargetx86_la-X86ISelLowering.Plo
4006
+libllvmx86codegen_la-MachineModuleInfoImpls.lo: llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
4007
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-MachineModuleInfoImpls.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-MachineModuleInfoImpls.Tpo -c -o libllvmx86codegen_la-MachineModuleInfoImpls.lo `test -f 'llvm/lib/CodeGen/MachineModuleInfoImpls.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
4008
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-MachineModuleInfoImpls.Tpo $(DEPDIR)/libllvmx86codegen_la-MachineModuleInfoImpls.Plo
4993 4009
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
4994
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86ISelLowering.cpp' object='libllvmtargetx86_la-X86ISelLowering.lo' libtool=yes @AMDEPBACKSLASH@
4010
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/MachineModuleInfoImpls.cpp' object='libllvmx86codegen_la-MachineModuleInfoImpls.lo' libtool=yes @AMDEPBACKSLASH@
4995 4011
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
4996
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86ISelLowering.lo `test -f 'llvm/lib/Target/X86/X86ISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ISelLowering.cpp
4012
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-MachineModuleInfoImpls.lo `test -f 'llvm/lib/CodeGen/MachineModuleInfoImpls.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
4997 4013
 
4998
-libllvmtargetx86_la-X86InstrInfo.lo: llvm/lib/Target/X86/X86InstrInfo.cpp
4999
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86InstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86InstrInfo.Tpo -c -o libllvmtargetx86_la-X86InstrInfo.lo `test -f 'llvm/lib/Target/X86/X86InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86InstrInfo.cpp
5000
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86InstrInfo.Tpo $(DEPDIR)/libllvmtargetx86_la-X86InstrInfo.Plo
4014
+libllvmx86codegen_la-FastISel.lo: llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
4015
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-FastISel.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-FastISel.Tpo -c -o libllvmx86codegen_la-FastISel.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
4016
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-FastISel.Tpo $(DEPDIR)/libllvmx86codegen_la-FastISel.Plo
5001 4017
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5002
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86InstrInfo.cpp' object='libllvmtargetx86_la-X86InstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
4018
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/CodeGen/SelectionDAG/FastISel.cpp' object='libllvmx86codegen_la-FastISel.lo' libtool=yes @AMDEPBACKSLASH@
5003 4019
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5004
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86InstrInfo.lo `test -f 'llvm/lib/Target/X86/X86InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86InstrInfo.cpp
4020
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-FastISel.lo `test -f 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp' || echo '$(srcdir)/'`llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
5005 4021
 
5006
-libllvmtargetx86_la-X86JITInfo.lo: llvm/lib/Target/X86/X86JITInfo.cpp
5007
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86JITInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86JITInfo.Tpo -c -o libllvmtargetx86_la-X86JITInfo.lo `test -f 'llvm/lib/Target/X86/X86JITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86JITInfo.cpp
5008
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86JITInfo.Tpo $(DEPDIR)/libllvmtargetx86_la-X86JITInfo.Plo
4022
+libllvmx86codegen_la-MCAsmInfoCOFF.lo: llvm/lib/MC/MCAsmInfoCOFF.cpp
4023
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-MCAsmInfoCOFF.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-MCAsmInfoCOFF.Tpo -c -o libllvmx86codegen_la-MCAsmInfoCOFF.lo `test -f 'llvm/lib/MC/MCAsmInfoCOFF.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfoCOFF.cpp
4024
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-MCAsmInfoCOFF.Tpo $(DEPDIR)/libllvmx86codegen_la-MCAsmInfoCOFF.Plo
5009 4025
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5010
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86JITInfo.cpp' object='libllvmtargetx86_la-X86JITInfo.lo' libtool=yes @AMDEPBACKSLASH@
4026
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCAsmInfoCOFF.cpp' object='libllvmx86codegen_la-MCAsmInfoCOFF.lo' libtool=yes @AMDEPBACKSLASH@
5011 4027
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5012
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86JITInfo.lo `test -f 'llvm/lib/Target/X86/X86JITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86JITInfo.cpp
4028
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-MCAsmInfoCOFF.lo `test -f 'llvm/lib/MC/MCAsmInfoCOFF.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCAsmInfoCOFF.cpp
5013 4029
 
5014
-libllvmtargetx86_la-X86MCAsmInfo.lo: llvm/lib/Target/X86/X86MCAsmInfo.cpp
5015
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86MCAsmInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86MCAsmInfo.Tpo -c -o libllvmtargetx86_la-X86MCAsmInfo.lo `test -f 'llvm/lib/Target/X86/X86MCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86MCAsmInfo.cpp
5016
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86MCAsmInfo.Tpo $(DEPDIR)/libllvmtargetx86_la-X86MCAsmInfo.Plo
4030
+libllvmx86codegen_la-MCCodeEmitter.lo: llvm/lib/MC/MCCodeEmitter.cpp
4031
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-MCCodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-MCCodeEmitter.Tpo -c -o libllvmx86codegen_la-MCCodeEmitter.lo `test -f 'llvm/lib/MC/MCCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCCodeEmitter.cpp
4032
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-MCCodeEmitter.Tpo $(DEPDIR)/libllvmx86codegen_la-MCCodeEmitter.Plo
5017 4033
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5018
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86MCAsmInfo.cpp' object='libllvmtargetx86_la-X86MCAsmInfo.lo' libtool=yes @AMDEPBACKSLASH@
4034
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCCodeEmitter.cpp' object='libllvmx86codegen_la-MCCodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
5019 4035
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5020
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86MCAsmInfo.lo `test -f 'llvm/lib/Target/X86/X86MCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86MCAsmInfo.cpp
4036
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-MCCodeEmitter.lo `test -f 'llvm/lib/MC/MCCodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCCodeEmitter.cpp
5021 4037
 
5022
-libllvmtargetx86_la-X86RegisterInfo.lo: llvm/lib/Target/X86/X86RegisterInfo.cpp
5023
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86RegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86RegisterInfo.Tpo -c -o libllvmtargetx86_la-X86RegisterInfo.lo `test -f 'llvm/lib/Target/X86/X86RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86RegisterInfo.cpp
5024
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86RegisterInfo.Tpo $(DEPDIR)/libllvmtargetx86_la-X86RegisterInfo.Plo
4038
+libllvmx86codegen_la-MCContext.lo: llvm/lib/MC/MCContext.cpp
4039
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-MCContext.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-MCContext.Tpo -c -o libllvmx86codegen_la-MCContext.lo `test -f 'llvm/lib/MC/MCContext.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCContext.cpp
4040
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-MCContext.Tpo $(DEPDIR)/libllvmx86codegen_la-MCContext.Plo
5025 4041
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5026
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86RegisterInfo.cpp' object='libllvmtargetx86_la-X86RegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
4042
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCContext.cpp' object='libllvmx86codegen_la-MCContext.lo' libtool=yes @AMDEPBACKSLASH@
5027 4043
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5028
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86RegisterInfo.lo `test -f 'llvm/lib/Target/X86/X86RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86RegisterInfo.cpp
4044
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-MCContext.lo `test -f 'llvm/lib/MC/MCContext.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCContext.cpp
5029 4045
 
5030
-libllvmtargetx86_la-X86Subtarget.lo: llvm/lib/Target/X86/X86Subtarget.cpp
5031
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86Subtarget.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86Subtarget.Tpo -c -o libllvmtargetx86_la-X86Subtarget.lo `test -f 'llvm/lib/Target/X86/X86Subtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86Subtarget.cpp
5032
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86Subtarget.Tpo $(DEPDIR)/libllvmtargetx86_la-X86Subtarget.Plo
4046
+libllvmx86codegen_la-MCExpr.lo: llvm/lib/MC/MCExpr.cpp
4047
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-MCExpr.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-MCExpr.Tpo -c -o libllvmx86codegen_la-MCExpr.lo `test -f 'llvm/lib/MC/MCExpr.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCExpr.cpp
4048
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-MCExpr.Tpo $(DEPDIR)/libllvmx86codegen_la-MCExpr.Plo
5033 4049
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5034
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86Subtarget.cpp' object='libllvmtargetx86_la-X86Subtarget.lo' libtool=yes @AMDEPBACKSLASH@
4050
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCExpr.cpp' object='libllvmx86codegen_la-MCExpr.lo' libtool=yes @AMDEPBACKSLASH@
5035 4051
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5036
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86Subtarget.lo `test -f 'llvm/lib/Target/X86/X86Subtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86Subtarget.cpp
4052
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-MCExpr.lo `test -f 'llvm/lib/MC/MCExpr.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCExpr.cpp
5037 4053
 
5038
-libllvmtargetx86_la-X86TargetMachine.lo: llvm/lib/Target/X86/X86TargetMachine.cpp
5039
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86TargetMachine.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86TargetMachine.Tpo -c -o libllvmtargetx86_la-X86TargetMachine.lo `test -f 'llvm/lib/Target/X86/X86TargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86TargetMachine.cpp
5040
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86TargetMachine.Tpo $(DEPDIR)/libllvmtargetx86_la-X86TargetMachine.Plo
4054
+libllvmx86codegen_la-MCInst.lo: llvm/lib/MC/MCInst.cpp
4055
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-MCInst.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-MCInst.Tpo -c -o libllvmx86codegen_la-MCInst.lo `test -f 'llvm/lib/MC/MCInst.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCInst.cpp
4056
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-MCInst.Tpo $(DEPDIR)/libllvmx86codegen_la-MCInst.Plo
5041 4057
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5042
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86TargetMachine.cpp' object='libllvmtargetx86_la-X86TargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
4058
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/MC/MCInst.cpp' object='libllvmx86codegen_la-MCInst.lo' libtool=yes @AMDEPBACKSLASH@
5043 4059
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5044
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86TargetMachine.lo `test -f 'llvm/lib/Target/X86/X86TargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86TargetMachine.cpp
4060
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-MCInst.lo `test -f 'llvm/lib/MC/MCInst.cpp' || echo '$(srcdir)/'`llvm/lib/MC/MCInst.cpp
5045 4061
 
5046
-libllvmtargetx86_la-X86FastISel.lo: llvm/lib/Target/X86/X86FastISel.cpp
5047
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86FastISel.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86FastISel.Tpo -c -o libllvmtargetx86_la-X86FastISel.lo `test -f 'llvm/lib/Target/X86/X86FastISel.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FastISel.cpp
5048
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86FastISel.Tpo $(DEPDIR)/libllvmtargetx86_la-X86FastISel.Plo
4062
+libllvmx86codegen_la-TargetELFWriterInfo.lo: llvm/lib/Target/TargetELFWriterInfo.cpp
4063
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-TargetELFWriterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-TargetELFWriterInfo.Tpo -c -o libllvmx86codegen_la-TargetELFWriterInfo.lo `test -f 'llvm/lib/Target/TargetELFWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetELFWriterInfo.cpp
4064
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-TargetELFWriterInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-TargetELFWriterInfo.Plo
5049 4065
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5050
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86FastISel.cpp' object='libllvmtargetx86_la-X86FastISel.lo' libtool=yes @AMDEPBACKSLASH@
4066
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/TargetELFWriterInfo.cpp' object='libllvmx86codegen_la-TargetELFWriterInfo.lo' libtool=yes @AMDEPBACKSLASH@
5051 4067
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5052
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86FastISel.lo `test -f 'llvm/lib/Target/X86/X86FastISel.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FastISel.cpp
4068
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-TargetELFWriterInfo.lo `test -f 'llvm/lib/Target/TargetELFWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/TargetELFWriterInfo.cpp
5053 4069
 
5054
-libllvmtargetx86_la-X86TargetObjectFile.lo: llvm/lib/Target/X86/X86TargetObjectFile.cpp
5055
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86TargetObjectFile.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86TargetObjectFile.Tpo -c -o libllvmtargetx86_la-X86TargetObjectFile.lo `test -f 'llvm/lib/Target/X86/X86TargetObjectFile.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86TargetObjectFile.cpp
5056
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86TargetObjectFile.Tpo $(DEPDIR)/libllvmtargetx86_la-X86TargetObjectFile.Plo
4070
+libllvmx86codegen_la-X86TargetInfo.lo: llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
4071
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86TargetInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86TargetInfo.Tpo -c -o libllvmx86codegen_la-X86TargetInfo.lo `test -f 'llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
4072
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86TargetInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-X86TargetInfo.Plo
5057 4073
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5058
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86TargetObjectFile.cpp' object='libllvmtargetx86_la-X86TargetObjectFile.lo' libtool=yes @AMDEPBACKSLASH@
4074
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp' object='libllvmx86codegen_la-X86TargetInfo.lo' libtool=yes @AMDEPBACKSLASH@
5059 4075
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5060
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86TargetObjectFile.lo `test -f 'llvm/lib/Target/X86/X86TargetObjectFile.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86TargetObjectFile.cpp
4076
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86TargetInfo.lo `test -f 'llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
5061 4077
 
5062
-libllvmtargetx86_la-X86TargetInfo.lo: llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
5063
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtargetx86_la-X86TargetInfo.lo -MD -MP -MF $(DEPDIR)/libllvmtargetx86_la-X86TargetInfo.Tpo -c -o libllvmtargetx86_la-X86TargetInfo.lo `test -f 'llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
5064
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtargetx86_la-X86TargetInfo.Tpo $(DEPDIR)/libllvmtargetx86_la-X86TargetInfo.Plo
4078
+libllvmx86codegen_la-X86COFFMachineModuleInfo.lo: llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
4079
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86COFFMachineModuleInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86COFFMachineModuleInfo.Tpo -c -o libllvmx86codegen_la-X86COFFMachineModuleInfo.lo `test -f 'llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
4080
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86COFFMachineModuleInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-X86COFFMachineModuleInfo.Plo
5065 4081
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5066
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp' object='libllvmtargetx86_la-X86TargetInfo.lo' libtool=yes @AMDEPBACKSLASH@
4082
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' object='libllvmx86codegen_la-X86COFFMachineModuleInfo.lo' libtool=yes @AMDEPBACKSLASH@
5067 4083
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5068
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtargetx86_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtargetx86_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtargetx86_la-X86TargetInfo.lo `test -f 'llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
4084
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86COFFMachineModuleInfo.lo `test -f 'llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp
5069 4085
 
5070
-libllvmtransformutils_la-AddrModeMatcher.lo: llvm/lib/Transforms/Utils/AddrModeMatcher.cpp
5071
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-AddrModeMatcher.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-AddrModeMatcher.Tpo -c -o libllvmtransformutils_la-AddrModeMatcher.lo `test -f 'llvm/lib/Transforms/Utils/AddrModeMatcher.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/AddrModeMatcher.cpp
5072
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-AddrModeMatcher.Tpo $(DEPDIR)/libllvmtransformutils_la-AddrModeMatcher.Plo
4086
+libllvmx86codegen_la-X86CodeEmitter.lo: llvm/lib/Target/X86/X86CodeEmitter.cpp
4087
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86CodeEmitter.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86CodeEmitter.Tpo -c -o libllvmx86codegen_la-X86CodeEmitter.lo `test -f 'llvm/lib/Target/X86/X86CodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86CodeEmitter.cpp
4088
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86CodeEmitter.Tpo $(DEPDIR)/libllvmx86codegen_la-X86CodeEmitter.Plo
5073 4089
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5074
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/AddrModeMatcher.cpp' object='libllvmtransformutils_la-AddrModeMatcher.lo' libtool=yes @AMDEPBACKSLASH@
4090
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86CodeEmitter.cpp' object='libllvmx86codegen_la-X86CodeEmitter.lo' libtool=yes @AMDEPBACKSLASH@
5075 4091
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5076
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-AddrModeMatcher.lo `test -f 'llvm/lib/Transforms/Utils/AddrModeMatcher.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/AddrModeMatcher.cpp
4092
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86CodeEmitter.lo `test -f 'llvm/lib/Target/X86/X86CodeEmitter.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86CodeEmitter.cpp
5077 4093
 
5078
-libllvmtransformutils_la-BasicBlockUtils.lo: llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
5079
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-BasicBlockUtils.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-BasicBlockUtils.Tpo -c -o libllvmtransformutils_la-BasicBlockUtils.lo `test -f 'llvm/lib/Transforms/Utils/BasicBlockUtils.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
5080
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-BasicBlockUtils.Tpo $(DEPDIR)/libllvmtransformutils_la-BasicBlockUtils.Plo
4094
+libllvmx86codegen_la-X86ELFWriterInfo.lo: llvm/lib/Target/X86/X86ELFWriterInfo.cpp
4095
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86ELFWriterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86ELFWriterInfo.Tpo -c -o libllvmx86codegen_la-X86ELFWriterInfo.lo `test -f 'llvm/lib/Target/X86/X86ELFWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ELFWriterInfo.cpp
4096
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86ELFWriterInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-X86ELFWriterInfo.Plo
5081 4097
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5082
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/BasicBlockUtils.cpp' object='libllvmtransformutils_la-BasicBlockUtils.lo' libtool=yes @AMDEPBACKSLASH@
4098
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86ELFWriterInfo.cpp' object='libllvmx86codegen_la-X86ELFWriterInfo.lo' libtool=yes @AMDEPBACKSLASH@
5083 4099
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5084
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-BasicBlockUtils.lo `test -f 'llvm/lib/Transforms/Utils/BasicBlockUtils.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
4100
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86ELFWriterInfo.lo `test -f 'llvm/lib/Target/X86/X86ELFWriterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ELFWriterInfo.cpp
5085 4101
 
5086
-libllvmtransformutils_la-BreakCriticalEdges.lo: llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
5087
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-BreakCriticalEdges.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-BreakCriticalEdges.Tpo -c -o libllvmtransformutils_la-BreakCriticalEdges.lo `test -f 'llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
5088
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-BreakCriticalEdges.Tpo $(DEPDIR)/libllvmtransformutils_la-BreakCriticalEdges.Plo
4102
+libllvmx86codegen_la-X86FastISel.lo: llvm/lib/Target/X86/X86FastISel.cpp
4103
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86FastISel.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86FastISel.Tpo -c -o libllvmx86codegen_la-X86FastISel.lo `test -f 'llvm/lib/Target/X86/X86FastISel.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FastISel.cpp
4104
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86FastISel.Tpo $(DEPDIR)/libllvmx86codegen_la-X86FastISel.Plo
5089 4105
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5090
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp' object='libllvmtransformutils_la-BreakCriticalEdges.lo' libtool=yes @AMDEPBACKSLASH@
4106
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86FastISel.cpp' object='libllvmx86codegen_la-X86FastISel.lo' libtool=yes @AMDEPBACKSLASH@
5091 4107
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5092
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-BreakCriticalEdges.lo `test -f 'llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
4108
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86FastISel.lo `test -f 'llvm/lib/Target/X86/X86FastISel.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FastISel.cpp
5093 4109
 
5094
-libllvmtransformutils_la-DemoteRegToStack.lo: llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
5095
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-DemoteRegToStack.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-DemoteRegToStack.Tpo -c -o libllvmtransformutils_la-DemoteRegToStack.lo `test -f 'llvm/lib/Transforms/Utils/DemoteRegToStack.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
5096
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-DemoteRegToStack.Tpo $(DEPDIR)/libllvmtransformutils_la-DemoteRegToStack.Plo
4110
+libllvmx86codegen_la-X86FloatingPoint.lo: llvm/lib/Target/X86/X86FloatingPoint.cpp
4111
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86FloatingPoint.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86FloatingPoint.Tpo -c -o libllvmx86codegen_la-X86FloatingPoint.lo `test -f 'llvm/lib/Target/X86/X86FloatingPoint.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FloatingPoint.cpp
4112
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86FloatingPoint.Tpo $(DEPDIR)/libllvmx86codegen_la-X86FloatingPoint.Plo
5097 4113
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5098
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/DemoteRegToStack.cpp' object='libllvmtransformutils_la-DemoteRegToStack.lo' libtool=yes @AMDEPBACKSLASH@
4114
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86FloatingPoint.cpp' object='libllvmx86codegen_la-X86FloatingPoint.lo' libtool=yes @AMDEPBACKSLASH@
5099 4115
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5100
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-DemoteRegToStack.lo `test -f 'llvm/lib/Transforms/Utils/DemoteRegToStack.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
4116
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86FloatingPoint.lo `test -f 'llvm/lib/Target/X86/X86FloatingPoint.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FloatingPoint.cpp
5101 4117
 
5102
-libllvmtransformutils_la-LCSSA.lo: llvm/lib/Transforms/Utils/LCSSA.cpp
5103
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-LCSSA.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-LCSSA.Tpo -c -o libllvmtransformutils_la-LCSSA.lo `test -f 'llvm/lib/Transforms/Utils/LCSSA.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/LCSSA.cpp
5104
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-LCSSA.Tpo $(DEPDIR)/libllvmtransformutils_la-LCSSA.Plo
4118
+libllvmx86codegen_la-X86FloatingPointRegKill.lo: llvm/lib/Target/X86/X86FloatingPointRegKill.cpp
4119
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86FloatingPointRegKill.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86FloatingPointRegKill.Tpo -c -o libllvmx86codegen_la-X86FloatingPointRegKill.lo `test -f 'llvm/lib/Target/X86/X86FloatingPointRegKill.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FloatingPointRegKill.cpp
4120
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86FloatingPointRegKill.Tpo $(DEPDIR)/libllvmx86codegen_la-X86FloatingPointRegKill.Plo
5105 4121
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5106
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/LCSSA.cpp' object='libllvmtransformutils_la-LCSSA.lo' libtool=yes @AMDEPBACKSLASH@
4122
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86FloatingPointRegKill.cpp' object='libllvmx86codegen_la-X86FloatingPointRegKill.lo' libtool=yes @AMDEPBACKSLASH@
5107 4123
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5108
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-LCSSA.lo `test -f 'llvm/lib/Transforms/Utils/LCSSA.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/LCSSA.cpp
4124
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86FloatingPointRegKill.lo `test -f 'llvm/lib/Target/X86/X86FloatingPointRegKill.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86FloatingPointRegKill.cpp
5109 4125
 
5110
-libllvmtransformutils_la-Local.lo: llvm/lib/Transforms/Utils/Local.cpp
5111
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-Local.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-Local.Tpo -c -o libllvmtransformutils_la-Local.lo `test -f 'llvm/lib/Transforms/Utils/Local.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/Local.cpp
5112
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-Local.Tpo $(DEPDIR)/libllvmtransformutils_la-Local.Plo
4126
+libllvmx86codegen_la-X86ISelDAGToDAG.lo: llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
4127
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86ISelDAGToDAG.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86ISelDAGToDAG.Tpo -c -o libllvmx86codegen_la-X86ISelDAGToDAG.lo `test -f 'llvm/lib/Target/X86/X86ISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
4128
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86ISelDAGToDAG.Tpo $(DEPDIR)/libllvmx86codegen_la-X86ISelDAGToDAG.Plo
5113 4129
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5114
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/Local.cpp' object='libllvmtransformutils_la-Local.lo' libtool=yes @AMDEPBACKSLASH@
4130
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86ISelDAGToDAG.cpp' object='libllvmx86codegen_la-X86ISelDAGToDAG.lo' libtool=yes @AMDEPBACKSLASH@
5115 4131
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5116
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-Local.lo `test -f 'llvm/lib/Transforms/Utils/Local.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/Local.cpp
4132
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86ISelDAGToDAG.lo `test -f 'llvm/lib/Target/X86/X86ISelDAGToDAG.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
5117 4133
 
5118
-libllvmtransformutils_la-LoopSimplify.lo: llvm/lib/Transforms/Utils/LoopSimplify.cpp
5119
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-LoopSimplify.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-LoopSimplify.Tpo -c -o libllvmtransformutils_la-LoopSimplify.lo `test -f 'llvm/lib/Transforms/Utils/LoopSimplify.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/LoopSimplify.cpp
5120
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-LoopSimplify.Tpo $(DEPDIR)/libllvmtransformutils_la-LoopSimplify.Plo
4134
+libllvmx86codegen_la-X86ISelLowering.lo: llvm/lib/Target/X86/X86ISelLowering.cpp
4135
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86ISelLowering.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86ISelLowering.Tpo -c -o libllvmx86codegen_la-X86ISelLowering.lo `test -f 'llvm/lib/Target/X86/X86ISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ISelLowering.cpp
4136
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86ISelLowering.Tpo $(DEPDIR)/libllvmx86codegen_la-X86ISelLowering.Plo
5121 4137
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5122
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/LoopSimplify.cpp' object='libllvmtransformutils_la-LoopSimplify.lo' libtool=yes @AMDEPBACKSLASH@
4138
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86ISelLowering.cpp' object='libllvmx86codegen_la-X86ISelLowering.lo' libtool=yes @AMDEPBACKSLASH@
5123 4139
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5124
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-LoopSimplify.lo `test -f 'llvm/lib/Transforms/Utils/LoopSimplify.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/LoopSimplify.cpp
4140
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86ISelLowering.lo `test -f 'llvm/lib/Target/X86/X86ISelLowering.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86ISelLowering.cpp
5125 4141
 
5126
-libllvmtransformutils_la-LowerInvoke.lo: llvm/lib/Transforms/Utils/LowerInvoke.cpp
5127
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-LowerInvoke.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-LowerInvoke.Tpo -c -o libllvmtransformutils_la-LowerInvoke.lo `test -f 'llvm/lib/Transforms/Utils/LowerInvoke.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/LowerInvoke.cpp
5128
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-LowerInvoke.Tpo $(DEPDIR)/libllvmtransformutils_la-LowerInvoke.Plo
4142
+libllvmx86codegen_la-X86InstrInfo.lo: llvm/lib/Target/X86/X86InstrInfo.cpp
4143
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86InstrInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86InstrInfo.Tpo -c -o libllvmx86codegen_la-X86InstrInfo.lo `test -f 'llvm/lib/Target/X86/X86InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86InstrInfo.cpp
4144
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86InstrInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-X86InstrInfo.Plo
5129 4145
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5130
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/LowerInvoke.cpp' object='libllvmtransformutils_la-LowerInvoke.lo' libtool=yes @AMDEPBACKSLASH@
4146
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86InstrInfo.cpp' object='libllvmx86codegen_la-X86InstrInfo.lo' libtool=yes @AMDEPBACKSLASH@
5131 4147
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5132
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-LowerInvoke.lo `test -f 'llvm/lib/Transforms/Utils/LowerInvoke.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/LowerInvoke.cpp
4148
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86InstrInfo.lo `test -f 'llvm/lib/Target/X86/X86InstrInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86InstrInfo.cpp
5133 4149
 
5134
-libllvmtransformutils_la-LowerSwitch.lo: llvm/lib/Transforms/Utils/LowerSwitch.cpp
5135
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-LowerSwitch.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-LowerSwitch.Tpo -c -o libllvmtransformutils_la-LowerSwitch.lo `test -f 'llvm/lib/Transforms/Utils/LowerSwitch.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/LowerSwitch.cpp
5136
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-LowerSwitch.Tpo $(DEPDIR)/libllvmtransformutils_la-LowerSwitch.Plo
4150
+libllvmx86codegen_la-X86JITInfo.lo: llvm/lib/Target/X86/X86JITInfo.cpp
4151
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86JITInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86JITInfo.Tpo -c -o libllvmx86codegen_la-X86JITInfo.lo `test -f 'llvm/lib/Target/X86/X86JITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86JITInfo.cpp
4152
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86JITInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-X86JITInfo.Plo
5137 4153
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5138
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/LowerSwitch.cpp' object='libllvmtransformutils_la-LowerSwitch.lo' libtool=yes @AMDEPBACKSLASH@
4154
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86JITInfo.cpp' object='libllvmx86codegen_la-X86JITInfo.lo' libtool=yes @AMDEPBACKSLASH@
5139 4155
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5140
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-LowerSwitch.lo `test -f 'llvm/lib/Transforms/Utils/LowerSwitch.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/LowerSwitch.cpp
4156
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86JITInfo.lo `test -f 'llvm/lib/Target/X86/X86JITInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86JITInfo.cpp
5141 4157
 
5142
-libllvmtransformutils_la-Mem2Reg.lo: llvm/lib/Transforms/Utils/Mem2Reg.cpp
5143
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-Mem2Reg.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-Mem2Reg.Tpo -c -o libllvmtransformutils_la-Mem2Reg.lo `test -f 'llvm/lib/Transforms/Utils/Mem2Reg.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/Mem2Reg.cpp
5144
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-Mem2Reg.Tpo $(DEPDIR)/libllvmtransformutils_la-Mem2Reg.Plo
4158
+libllvmx86codegen_la-X86MCAsmInfo.lo: llvm/lib/Target/X86/X86MCAsmInfo.cpp
4159
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86MCAsmInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86MCAsmInfo.Tpo -c -o libllvmx86codegen_la-X86MCAsmInfo.lo `test -f 'llvm/lib/Target/X86/X86MCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86MCAsmInfo.cpp
4160
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86MCAsmInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-X86MCAsmInfo.Plo
5145 4161
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5146
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/Mem2Reg.cpp' object='libllvmtransformutils_la-Mem2Reg.lo' libtool=yes @AMDEPBACKSLASH@
4162
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86MCAsmInfo.cpp' object='libllvmx86codegen_la-X86MCAsmInfo.lo' libtool=yes @AMDEPBACKSLASH@
5147 4163
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5148
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-Mem2Reg.lo `test -f 'llvm/lib/Transforms/Utils/Mem2Reg.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/Mem2Reg.cpp
4164
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86MCAsmInfo.lo `test -f 'llvm/lib/Target/X86/X86MCAsmInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86MCAsmInfo.cpp
5149 4165
 
5150
-libllvmtransformutils_la-PromoteMemoryToRegister.lo: llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
5151
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-PromoteMemoryToRegister.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-PromoteMemoryToRegister.Tpo -c -o libllvmtransformutils_la-PromoteMemoryToRegister.lo `test -f 'llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
5152
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-PromoteMemoryToRegister.Tpo $(DEPDIR)/libllvmtransformutils_la-PromoteMemoryToRegister.Plo
4166
+libllvmx86codegen_la-X86RegisterInfo.lo: llvm/lib/Target/X86/X86RegisterInfo.cpp
4167
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86RegisterInfo.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86RegisterInfo.Tpo -c -o libllvmx86codegen_la-X86RegisterInfo.lo `test -f 'llvm/lib/Target/X86/X86RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86RegisterInfo.cpp
4168
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86RegisterInfo.Tpo $(DEPDIR)/libllvmx86codegen_la-X86RegisterInfo.Plo
5153 4169
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5154
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp' object='libllvmtransformutils_la-PromoteMemoryToRegister.lo' libtool=yes @AMDEPBACKSLASH@
4170
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86RegisterInfo.cpp' object='libllvmx86codegen_la-X86RegisterInfo.lo' libtool=yes @AMDEPBACKSLASH@
5155 4171
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5156
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-PromoteMemoryToRegister.lo `test -f 'llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
4172
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86RegisterInfo.lo `test -f 'llvm/lib/Target/X86/X86RegisterInfo.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86RegisterInfo.cpp
5157 4173
 
5158
-libllvmtransformutils_la-SimplifyCFG.lo: llvm/lib/Transforms/Utils/SimplifyCFG.cpp
5159
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-SimplifyCFG.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-SimplifyCFG.Tpo -c -o libllvmtransformutils_la-SimplifyCFG.lo `test -f 'llvm/lib/Transforms/Utils/SimplifyCFG.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/SimplifyCFG.cpp
5160
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-SimplifyCFG.Tpo $(DEPDIR)/libllvmtransformutils_la-SimplifyCFG.Plo
4174
+libllvmx86codegen_la-X86Subtarget.lo: llvm/lib/Target/X86/X86Subtarget.cpp
4175
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86Subtarget.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86Subtarget.Tpo -c -o libllvmx86codegen_la-X86Subtarget.lo `test -f 'llvm/lib/Target/X86/X86Subtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86Subtarget.cpp
4176
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86Subtarget.Tpo $(DEPDIR)/libllvmx86codegen_la-X86Subtarget.Plo
5161 4177
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5162
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/SimplifyCFG.cpp' object='libllvmtransformutils_la-SimplifyCFG.lo' libtool=yes @AMDEPBACKSLASH@
4178
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86Subtarget.cpp' object='libllvmx86codegen_la-X86Subtarget.lo' libtool=yes @AMDEPBACKSLASH@
5163 4179
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5164
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-SimplifyCFG.lo `test -f 'llvm/lib/Transforms/Utils/SimplifyCFG.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/SimplifyCFG.cpp
4180
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86Subtarget.lo `test -f 'llvm/lib/Target/X86/X86Subtarget.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86Subtarget.cpp
5165 4181
 
5166
-libllvmtransformutils_la-SSAUpdater.lo: llvm/lib/Transforms/Utils/SSAUpdater.cpp
5167
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-SSAUpdater.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-SSAUpdater.Tpo -c -o libllvmtransformutils_la-SSAUpdater.lo `test -f 'llvm/lib/Transforms/Utils/SSAUpdater.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/SSAUpdater.cpp
5168
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-SSAUpdater.Tpo $(DEPDIR)/libllvmtransformutils_la-SSAUpdater.Plo
4182
+libllvmx86codegen_la-X86TargetMachine.lo: llvm/lib/Target/X86/X86TargetMachine.cpp
4183
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86TargetMachine.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86TargetMachine.Tpo -c -o libllvmx86codegen_la-X86TargetMachine.lo `test -f 'llvm/lib/Target/X86/X86TargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86TargetMachine.cpp
4184
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86TargetMachine.Tpo $(DEPDIR)/libllvmx86codegen_la-X86TargetMachine.Plo
5169 4185
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5170
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/SSAUpdater.cpp' object='libllvmtransformutils_la-SSAUpdater.lo' libtool=yes @AMDEPBACKSLASH@
4186
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86TargetMachine.cpp' object='libllvmx86codegen_la-X86TargetMachine.lo' libtool=yes @AMDEPBACKSLASH@
5171 4187
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5172
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-SSAUpdater.lo `test -f 'llvm/lib/Transforms/Utils/SSAUpdater.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/SSAUpdater.cpp
4188
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86TargetMachine.lo `test -f 'llvm/lib/Target/X86/X86TargetMachine.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86TargetMachine.cpp
5173 4189
 
5174
-libllvmtransformutils_la-UnifyFunctionExitNodes.lo: llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
5175
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -MT libllvmtransformutils_la-UnifyFunctionExitNodes.lo -MD -MP -MF $(DEPDIR)/libllvmtransformutils_la-UnifyFunctionExitNodes.Tpo -c -o libllvmtransformutils_la-UnifyFunctionExitNodes.lo `test -f 'llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
5176
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmtransformutils_la-UnifyFunctionExitNodes.Tpo $(DEPDIR)/libllvmtransformutils_la-UnifyFunctionExitNodes.Plo
4190
+libllvmx86codegen_la-X86TargetObjectFile.lo: llvm/lib/Target/X86/X86TargetObjectFile.cpp
4191
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libllvmx86codegen_la-X86TargetObjectFile.lo -MD -MP -MF $(DEPDIR)/libllvmx86codegen_la-X86TargetObjectFile.Tpo -c -o libllvmx86codegen_la-X86TargetObjectFile.lo `test -f 'llvm/lib/Target/X86/X86TargetObjectFile.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86TargetObjectFile.cpp
4192
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libllvmx86codegen_la-X86TargetObjectFile.Tpo $(DEPDIR)/libllvmx86codegen_la-X86TargetObjectFile.Plo
5177 4193
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5178
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp' object='libllvmtransformutils_la-UnifyFunctionExitNodes.lo' libtool=yes @AMDEPBACKSLASH@
4194
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Target/X86/X86TargetObjectFile.cpp' object='libllvmx86codegen_la-X86TargetObjectFile.lo' libtool=yes @AMDEPBACKSLASH@
5179 4195
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5180
-@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmtransformutils_la_CPPFLAGS) $(CPPFLAGS) $(libllvmtransformutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libllvmtransformutils_la-UnifyFunctionExitNodes.lo `test -f 'llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp' || echo '$(srcdir)/'`llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
4196
+@am__fastdepCXX_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libllvmx86codegen_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libllvmx86codegen_la-X86TargetObjectFile.lo `test -f 'llvm/lib/Target/X86/X86TargetObjectFile.cpp' || echo '$(srcdir)/'`llvm/lib/Target/X86/X86TargetObjectFile.cpp
5181 4197
 
5182 4198
 FileCheck-FileCheck.o: llvm/utils/FileCheck/FileCheck.cpp
5183 4199
 @am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(FileCheck_CPPFLAGS) $(CPPFLAGS) $(FileCheck_CXXFLAGS) $(CXXFLAGS) -MT FileCheck-FileCheck.o -MD -MP -MF $(DEPDIR)/FileCheck-FileCheck.Tpo -c -o FileCheck-FileCheck.o `test -f 'llvm/utils/FileCheck/FileCheck.cpp' || echo '$(srcdir)/'`llvm/utils/FileCheck/FileCheck.cpp
... ...
@@ -5291,437 +3715,437 @@ llvm_dis-llvm-dis.obj: llvm/tools/llvm-dis/llvm-dis.cpp
5291 5291
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5292 5292
 @am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvm_dis_CPPFLAGS) $(CPPFLAGS) $(llvm_dis_CXXFLAGS) $(CXXFLAGS) -c -o llvm_dis-llvm-dis.obj `if test -f 'llvm/tools/llvm-dis/llvm-dis.cpp'; then $(CYGPATH_W) 'llvm/tools/llvm-dis/llvm-dis.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/tools/llvm-dis/llvm-dis.cpp'; fi`
5293 5293
 
5294
-llvmunittest_ADT-APFloatTest.o: llvm/unittests/ADT/APFloatTest.cpp
5295
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-APFloatTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-APFloatTest.Tpo -c -o llvmunittest_ADT-APFloatTest.o `test -f 'llvm/unittests/ADT/APFloatTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/APFloatTest.cpp
5296
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-APFloatTest.Tpo $(DEPDIR)/llvmunittest_ADT-APFloatTest.Po
5294
+APFloatTest.o: llvm/unittests/ADT/APFloatTest.cpp
5295
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT APFloatTest.o -MD -MP -MF $(DEPDIR)/APFloatTest.Tpo -c -o APFloatTest.o `test -f 'llvm/unittests/ADT/APFloatTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/APFloatTest.cpp
5296
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/APFloatTest.Tpo $(DEPDIR)/APFloatTest.Po
5297 5297
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5298
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/APFloatTest.cpp' object='llvmunittest_ADT-APFloatTest.o' libtool=no @AMDEPBACKSLASH@
5298
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/APFloatTest.cpp' object='APFloatTest.o' libtool=no @AMDEPBACKSLASH@
5299 5299
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5300
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-APFloatTest.o `test -f 'llvm/unittests/ADT/APFloatTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/APFloatTest.cpp
5300
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o APFloatTest.o `test -f 'llvm/unittests/ADT/APFloatTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/APFloatTest.cpp
5301 5301
 
5302
-llvmunittest_ADT-APFloatTest.obj: llvm/unittests/ADT/APFloatTest.cpp
5303
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-APFloatTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-APFloatTest.Tpo -c -o llvmunittest_ADT-APFloatTest.obj `if test -f 'llvm/unittests/ADT/APFloatTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/APFloatTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/APFloatTest.cpp'; fi`
5304
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-APFloatTest.Tpo $(DEPDIR)/llvmunittest_ADT-APFloatTest.Po
5302
+APFloatTest.obj: llvm/unittests/ADT/APFloatTest.cpp
5303
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT APFloatTest.obj -MD -MP -MF $(DEPDIR)/APFloatTest.Tpo -c -o APFloatTest.obj `if test -f 'llvm/unittests/ADT/APFloatTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/APFloatTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/APFloatTest.cpp'; fi`
5304
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/APFloatTest.Tpo $(DEPDIR)/APFloatTest.Po
5305 5305
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5306
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/APFloatTest.cpp' object='llvmunittest_ADT-APFloatTest.obj' libtool=no @AMDEPBACKSLASH@
5306
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/APFloatTest.cpp' object='APFloatTest.obj' libtool=no @AMDEPBACKSLASH@
5307 5307
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5308
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-APFloatTest.obj `if test -f 'llvm/unittests/ADT/APFloatTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/APFloatTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/APFloatTest.cpp'; fi`
5308
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o APFloatTest.obj `if test -f 'llvm/unittests/ADT/APFloatTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/APFloatTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/APFloatTest.cpp'; fi`
5309 5309
 
5310
-llvmunittest_ADT-APIntTest.o: llvm/unittests/ADT/APIntTest.cpp
5311
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-APIntTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-APIntTest.Tpo -c -o llvmunittest_ADT-APIntTest.o `test -f 'llvm/unittests/ADT/APIntTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/APIntTest.cpp
5312
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-APIntTest.Tpo $(DEPDIR)/llvmunittest_ADT-APIntTest.Po
5310
+APIntTest.o: llvm/unittests/ADT/APIntTest.cpp
5311
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT APIntTest.o -MD -MP -MF $(DEPDIR)/APIntTest.Tpo -c -o APIntTest.o `test -f 'llvm/unittests/ADT/APIntTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/APIntTest.cpp
5312
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/APIntTest.Tpo $(DEPDIR)/APIntTest.Po
5313 5313
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5314
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/APIntTest.cpp' object='llvmunittest_ADT-APIntTest.o' libtool=no @AMDEPBACKSLASH@
5314
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/APIntTest.cpp' object='APIntTest.o' libtool=no @AMDEPBACKSLASH@
5315 5315
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5316
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-APIntTest.o `test -f 'llvm/unittests/ADT/APIntTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/APIntTest.cpp
5316
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o APIntTest.o `test -f 'llvm/unittests/ADT/APIntTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/APIntTest.cpp
5317 5317
 
5318
-llvmunittest_ADT-APIntTest.obj: llvm/unittests/ADT/APIntTest.cpp
5319
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-APIntTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-APIntTest.Tpo -c -o llvmunittest_ADT-APIntTest.obj `if test -f 'llvm/unittests/ADT/APIntTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/APIntTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/APIntTest.cpp'; fi`
5320
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-APIntTest.Tpo $(DEPDIR)/llvmunittest_ADT-APIntTest.Po
5318
+APIntTest.obj: llvm/unittests/ADT/APIntTest.cpp
5319
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT APIntTest.obj -MD -MP -MF $(DEPDIR)/APIntTest.Tpo -c -o APIntTest.obj `if test -f 'llvm/unittests/ADT/APIntTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/APIntTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/APIntTest.cpp'; fi`
5320
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/APIntTest.Tpo $(DEPDIR)/APIntTest.Po
5321 5321
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5322
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/APIntTest.cpp' object='llvmunittest_ADT-APIntTest.obj' libtool=no @AMDEPBACKSLASH@
5322
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/APIntTest.cpp' object='APIntTest.obj' libtool=no @AMDEPBACKSLASH@
5323 5323
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5324
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-APIntTest.obj `if test -f 'llvm/unittests/ADT/APIntTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/APIntTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/APIntTest.cpp'; fi`
5324
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o APIntTest.obj `if test -f 'llvm/unittests/ADT/APIntTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/APIntTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/APIntTest.cpp'; fi`
5325 5325
 
5326
-llvmunittest_ADT-DenseMapTest.o: llvm/unittests/ADT/DenseMapTest.cpp
5327
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-DenseMapTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-DenseMapTest.Tpo -c -o llvmunittest_ADT-DenseMapTest.o `test -f 'llvm/unittests/ADT/DenseMapTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/DenseMapTest.cpp
5328
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-DenseMapTest.Tpo $(DEPDIR)/llvmunittest_ADT-DenseMapTest.Po
5326
+DenseMapTest.o: llvm/unittests/ADT/DenseMapTest.cpp
5327
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DenseMapTest.o -MD -MP -MF $(DEPDIR)/DenseMapTest.Tpo -c -o DenseMapTest.o `test -f 'llvm/unittests/ADT/DenseMapTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/DenseMapTest.cpp
5328
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DenseMapTest.Tpo $(DEPDIR)/DenseMapTest.Po
5329 5329
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5330
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/DenseMapTest.cpp' object='llvmunittest_ADT-DenseMapTest.o' libtool=no @AMDEPBACKSLASH@
5330
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/DenseMapTest.cpp' object='DenseMapTest.o' libtool=no @AMDEPBACKSLASH@
5331 5331
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5332
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-DenseMapTest.o `test -f 'llvm/unittests/ADT/DenseMapTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/DenseMapTest.cpp
5332
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DenseMapTest.o `test -f 'llvm/unittests/ADT/DenseMapTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/DenseMapTest.cpp
5333 5333
 
5334
-llvmunittest_ADT-DenseMapTest.obj: llvm/unittests/ADT/DenseMapTest.cpp
5335
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-DenseMapTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-DenseMapTest.Tpo -c -o llvmunittest_ADT-DenseMapTest.obj `if test -f 'llvm/unittests/ADT/DenseMapTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/DenseMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/DenseMapTest.cpp'; fi`
5336
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-DenseMapTest.Tpo $(DEPDIR)/llvmunittest_ADT-DenseMapTest.Po
5334
+DenseMapTest.obj: llvm/unittests/ADT/DenseMapTest.cpp
5335
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DenseMapTest.obj -MD -MP -MF $(DEPDIR)/DenseMapTest.Tpo -c -o DenseMapTest.obj `if test -f 'llvm/unittests/ADT/DenseMapTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/DenseMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/DenseMapTest.cpp'; fi`
5336
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DenseMapTest.Tpo $(DEPDIR)/DenseMapTest.Po
5337 5337
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5338
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/DenseMapTest.cpp' object='llvmunittest_ADT-DenseMapTest.obj' libtool=no @AMDEPBACKSLASH@
5338
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/DenseMapTest.cpp' object='DenseMapTest.obj' libtool=no @AMDEPBACKSLASH@
5339 5339
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5340
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-DenseMapTest.obj `if test -f 'llvm/unittests/ADT/DenseMapTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/DenseMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/DenseMapTest.cpp'; fi`
5340
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DenseMapTest.obj `if test -f 'llvm/unittests/ADT/DenseMapTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/DenseMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/DenseMapTest.cpp'; fi`
5341 5341
 
5342
-llvmunittest_ADT-DenseSetTest.o: llvm/unittests/ADT/DenseSetTest.cpp
5343
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-DenseSetTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-DenseSetTest.Tpo -c -o llvmunittest_ADT-DenseSetTest.o `test -f 'llvm/unittests/ADT/DenseSetTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/DenseSetTest.cpp
5344
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-DenseSetTest.Tpo $(DEPDIR)/llvmunittest_ADT-DenseSetTest.Po
5342
+DenseSetTest.o: llvm/unittests/ADT/DenseSetTest.cpp
5343
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DenseSetTest.o -MD -MP -MF $(DEPDIR)/DenseSetTest.Tpo -c -o DenseSetTest.o `test -f 'llvm/unittests/ADT/DenseSetTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/DenseSetTest.cpp
5344
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DenseSetTest.Tpo $(DEPDIR)/DenseSetTest.Po
5345 5345
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5346
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/DenseSetTest.cpp' object='llvmunittest_ADT-DenseSetTest.o' libtool=no @AMDEPBACKSLASH@
5346
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/DenseSetTest.cpp' object='DenseSetTest.o' libtool=no @AMDEPBACKSLASH@
5347 5347
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5348
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-DenseSetTest.o `test -f 'llvm/unittests/ADT/DenseSetTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/DenseSetTest.cpp
5348
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DenseSetTest.o `test -f 'llvm/unittests/ADT/DenseSetTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/DenseSetTest.cpp
5349 5349
 
5350
-llvmunittest_ADT-DenseSetTest.obj: llvm/unittests/ADT/DenseSetTest.cpp
5351
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-DenseSetTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-DenseSetTest.Tpo -c -o llvmunittest_ADT-DenseSetTest.obj `if test -f 'llvm/unittests/ADT/DenseSetTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/DenseSetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/DenseSetTest.cpp'; fi`
5352
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-DenseSetTest.Tpo $(DEPDIR)/llvmunittest_ADT-DenseSetTest.Po
5350
+DenseSetTest.obj: llvm/unittests/ADT/DenseSetTest.cpp
5351
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DenseSetTest.obj -MD -MP -MF $(DEPDIR)/DenseSetTest.Tpo -c -o DenseSetTest.obj `if test -f 'llvm/unittests/ADT/DenseSetTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/DenseSetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/DenseSetTest.cpp'; fi`
5352
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/DenseSetTest.Tpo $(DEPDIR)/DenseSetTest.Po
5353 5353
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5354
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/DenseSetTest.cpp' object='llvmunittest_ADT-DenseSetTest.obj' libtool=no @AMDEPBACKSLASH@
5354
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/DenseSetTest.cpp' object='DenseSetTest.obj' libtool=no @AMDEPBACKSLASH@
5355 5355
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5356
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-DenseSetTest.obj `if test -f 'llvm/unittests/ADT/DenseSetTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/DenseSetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/DenseSetTest.cpp'; fi`
5356
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DenseSetTest.obj `if test -f 'llvm/unittests/ADT/DenseSetTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/DenseSetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/DenseSetTest.cpp'; fi`
5357 5357
 
5358
-llvmunittest_ADT-ImmutableSetTest.o: llvm/unittests/ADT/ImmutableSetTest.cpp
5359
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-ImmutableSetTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-ImmutableSetTest.Tpo -c -o llvmunittest_ADT-ImmutableSetTest.o `test -f 'llvm/unittests/ADT/ImmutableSetTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/ImmutableSetTest.cpp
5360
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-ImmutableSetTest.Tpo $(DEPDIR)/llvmunittest_ADT-ImmutableSetTest.Po
5358
+ImmutableSetTest.o: llvm/unittests/ADT/ImmutableSetTest.cpp
5359
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ImmutableSetTest.o -MD -MP -MF $(DEPDIR)/ImmutableSetTest.Tpo -c -o ImmutableSetTest.o `test -f 'llvm/unittests/ADT/ImmutableSetTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/ImmutableSetTest.cpp
5360
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ImmutableSetTest.Tpo $(DEPDIR)/ImmutableSetTest.Po
5361 5361
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5362
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/ImmutableSetTest.cpp' object='llvmunittest_ADT-ImmutableSetTest.o' libtool=no @AMDEPBACKSLASH@
5362
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/ImmutableSetTest.cpp' object='ImmutableSetTest.o' libtool=no @AMDEPBACKSLASH@
5363 5363
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5364
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-ImmutableSetTest.o `test -f 'llvm/unittests/ADT/ImmutableSetTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/ImmutableSetTest.cpp
5364
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ImmutableSetTest.o `test -f 'llvm/unittests/ADT/ImmutableSetTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/ImmutableSetTest.cpp
5365 5365
 
5366
-llvmunittest_ADT-ImmutableSetTest.obj: llvm/unittests/ADT/ImmutableSetTest.cpp
5367
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-ImmutableSetTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-ImmutableSetTest.Tpo -c -o llvmunittest_ADT-ImmutableSetTest.obj `if test -f 'llvm/unittests/ADT/ImmutableSetTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/ImmutableSetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/ImmutableSetTest.cpp'; fi`
5368
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-ImmutableSetTest.Tpo $(DEPDIR)/llvmunittest_ADT-ImmutableSetTest.Po
5366
+ImmutableSetTest.obj: llvm/unittests/ADT/ImmutableSetTest.cpp
5367
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ImmutableSetTest.obj -MD -MP -MF $(DEPDIR)/ImmutableSetTest.Tpo -c -o ImmutableSetTest.obj `if test -f 'llvm/unittests/ADT/ImmutableSetTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/ImmutableSetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/ImmutableSetTest.cpp'; fi`
5368
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/ImmutableSetTest.Tpo $(DEPDIR)/ImmutableSetTest.Po
5369 5369
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5370
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/ImmutableSetTest.cpp' object='llvmunittest_ADT-ImmutableSetTest.obj' libtool=no @AMDEPBACKSLASH@
5370
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/ImmutableSetTest.cpp' object='ImmutableSetTest.obj' libtool=no @AMDEPBACKSLASH@
5371 5371
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5372
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-ImmutableSetTest.obj `if test -f 'llvm/unittests/ADT/ImmutableSetTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/ImmutableSetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/ImmutableSetTest.cpp'; fi`
5372
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ImmutableSetTest.obj `if test -f 'llvm/unittests/ADT/ImmutableSetTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/ImmutableSetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/ImmutableSetTest.cpp'; fi`
5373 5373
 
5374
-llvmunittest_ADT-SmallStringTest.o: llvm/unittests/ADT/SmallStringTest.cpp
5375
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-SmallStringTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-SmallStringTest.Tpo -c -o llvmunittest_ADT-SmallStringTest.o `test -f 'llvm/unittests/ADT/SmallStringTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SmallStringTest.cpp
5376
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-SmallStringTest.Tpo $(DEPDIR)/llvmunittest_ADT-SmallStringTest.Po
5374
+SmallStringTest.o: llvm/unittests/ADT/SmallStringTest.cpp
5375
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SmallStringTest.o -MD -MP -MF $(DEPDIR)/SmallStringTest.Tpo -c -o SmallStringTest.o `test -f 'llvm/unittests/ADT/SmallStringTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SmallStringTest.cpp
5376
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SmallStringTest.Tpo $(DEPDIR)/SmallStringTest.Po
5377 5377
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5378
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SmallStringTest.cpp' object='llvmunittest_ADT-SmallStringTest.o' libtool=no @AMDEPBACKSLASH@
5378
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SmallStringTest.cpp' object='SmallStringTest.o' libtool=no @AMDEPBACKSLASH@
5379 5379
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5380
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-SmallStringTest.o `test -f 'llvm/unittests/ADT/SmallStringTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SmallStringTest.cpp
5380
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SmallStringTest.o `test -f 'llvm/unittests/ADT/SmallStringTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SmallStringTest.cpp
5381 5381
 
5382
-llvmunittest_ADT-SmallStringTest.obj: llvm/unittests/ADT/SmallStringTest.cpp
5383
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-SmallStringTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-SmallStringTest.Tpo -c -o llvmunittest_ADT-SmallStringTest.obj `if test -f 'llvm/unittests/ADT/SmallStringTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SmallStringTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SmallStringTest.cpp'; fi`
5384
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-SmallStringTest.Tpo $(DEPDIR)/llvmunittest_ADT-SmallStringTest.Po
5382
+SmallStringTest.obj: llvm/unittests/ADT/SmallStringTest.cpp
5383
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SmallStringTest.obj -MD -MP -MF $(DEPDIR)/SmallStringTest.Tpo -c -o SmallStringTest.obj `if test -f 'llvm/unittests/ADT/SmallStringTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SmallStringTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SmallStringTest.cpp'; fi`
5384
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SmallStringTest.Tpo $(DEPDIR)/SmallStringTest.Po
5385 5385
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5386
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SmallStringTest.cpp' object='llvmunittest_ADT-SmallStringTest.obj' libtool=no @AMDEPBACKSLASH@
5386
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SmallStringTest.cpp' object='SmallStringTest.obj' libtool=no @AMDEPBACKSLASH@
5387 5387
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5388
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-SmallStringTest.obj `if test -f 'llvm/unittests/ADT/SmallStringTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SmallStringTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SmallStringTest.cpp'; fi`
5388
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SmallStringTest.obj `if test -f 'llvm/unittests/ADT/SmallStringTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SmallStringTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SmallStringTest.cpp'; fi`
5389 5389
 
5390
-llvmunittest_ADT-SmallVectorTest.o: llvm/unittests/ADT/SmallVectorTest.cpp
5391
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-SmallVectorTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-SmallVectorTest.Tpo -c -o llvmunittest_ADT-SmallVectorTest.o `test -f 'llvm/unittests/ADT/SmallVectorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SmallVectorTest.cpp
5392
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-SmallVectorTest.Tpo $(DEPDIR)/llvmunittest_ADT-SmallVectorTest.Po
5390
+SmallVectorTest.o: llvm/unittests/ADT/SmallVectorTest.cpp
5391
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SmallVectorTest.o -MD -MP -MF $(DEPDIR)/SmallVectorTest.Tpo -c -o SmallVectorTest.o `test -f 'llvm/unittests/ADT/SmallVectorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SmallVectorTest.cpp
5392
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SmallVectorTest.Tpo $(DEPDIR)/SmallVectorTest.Po
5393 5393
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5394
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SmallVectorTest.cpp' object='llvmunittest_ADT-SmallVectorTest.o' libtool=no @AMDEPBACKSLASH@
5394
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SmallVectorTest.cpp' object='SmallVectorTest.o' libtool=no @AMDEPBACKSLASH@
5395 5395
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5396
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-SmallVectorTest.o `test -f 'llvm/unittests/ADT/SmallVectorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SmallVectorTest.cpp
5396
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SmallVectorTest.o `test -f 'llvm/unittests/ADT/SmallVectorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SmallVectorTest.cpp
5397 5397
 
5398
-llvmunittest_ADT-SmallVectorTest.obj: llvm/unittests/ADT/SmallVectorTest.cpp
5399
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-SmallVectorTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-SmallVectorTest.Tpo -c -o llvmunittest_ADT-SmallVectorTest.obj `if test -f 'llvm/unittests/ADT/SmallVectorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SmallVectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SmallVectorTest.cpp'; fi`
5400
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-SmallVectorTest.Tpo $(DEPDIR)/llvmunittest_ADT-SmallVectorTest.Po
5398
+SmallVectorTest.obj: llvm/unittests/ADT/SmallVectorTest.cpp
5399
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SmallVectorTest.obj -MD -MP -MF $(DEPDIR)/SmallVectorTest.Tpo -c -o SmallVectorTest.obj `if test -f 'llvm/unittests/ADT/SmallVectorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SmallVectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SmallVectorTest.cpp'; fi`
5400
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SmallVectorTest.Tpo $(DEPDIR)/SmallVectorTest.Po
5401 5401
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5402
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SmallVectorTest.cpp' object='llvmunittest_ADT-SmallVectorTest.obj' libtool=no @AMDEPBACKSLASH@
5402
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SmallVectorTest.cpp' object='SmallVectorTest.obj' libtool=no @AMDEPBACKSLASH@
5403 5403
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5404
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-SmallVectorTest.obj `if test -f 'llvm/unittests/ADT/SmallVectorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SmallVectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SmallVectorTest.cpp'; fi`
5404
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SmallVectorTest.obj `if test -f 'llvm/unittests/ADT/SmallVectorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SmallVectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SmallVectorTest.cpp'; fi`
5405 5405
 
5406
-llvmunittest_ADT-SparseBitVectorTest.o: llvm/unittests/ADT/SparseBitVectorTest.cpp
5407
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-SparseBitVectorTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-SparseBitVectorTest.Tpo -c -o llvmunittest_ADT-SparseBitVectorTest.o `test -f 'llvm/unittests/ADT/SparseBitVectorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SparseBitVectorTest.cpp
5408
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-SparseBitVectorTest.Tpo $(DEPDIR)/llvmunittest_ADT-SparseBitVectorTest.Po
5406
+SparseBitVectorTest.o: llvm/unittests/ADT/SparseBitVectorTest.cpp
5407
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SparseBitVectorTest.o -MD -MP -MF $(DEPDIR)/SparseBitVectorTest.Tpo -c -o SparseBitVectorTest.o `test -f 'llvm/unittests/ADT/SparseBitVectorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SparseBitVectorTest.cpp
5408
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SparseBitVectorTest.Tpo $(DEPDIR)/SparseBitVectorTest.Po
5409 5409
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5410
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SparseBitVectorTest.cpp' object='llvmunittest_ADT-SparseBitVectorTest.o' libtool=no @AMDEPBACKSLASH@
5410
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SparseBitVectorTest.cpp' object='SparseBitVectorTest.o' libtool=no @AMDEPBACKSLASH@
5411 5411
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5412
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-SparseBitVectorTest.o `test -f 'llvm/unittests/ADT/SparseBitVectorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SparseBitVectorTest.cpp
5412
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SparseBitVectorTest.o `test -f 'llvm/unittests/ADT/SparseBitVectorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/SparseBitVectorTest.cpp
5413 5413
 
5414
-llvmunittest_ADT-SparseBitVectorTest.obj: llvm/unittests/ADT/SparseBitVectorTest.cpp
5415
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-SparseBitVectorTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-SparseBitVectorTest.Tpo -c -o llvmunittest_ADT-SparseBitVectorTest.obj `if test -f 'llvm/unittests/ADT/SparseBitVectorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SparseBitVectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SparseBitVectorTest.cpp'; fi`
5416
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-SparseBitVectorTest.Tpo $(DEPDIR)/llvmunittest_ADT-SparseBitVectorTest.Po
5414
+SparseBitVectorTest.obj: llvm/unittests/ADT/SparseBitVectorTest.cpp
5415
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SparseBitVectorTest.obj -MD -MP -MF $(DEPDIR)/SparseBitVectorTest.Tpo -c -o SparseBitVectorTest.obj `if test -f 'llvm/unittests/ADT/SparseBitVectorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SparseBitVectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SparseBitVectorTest.cpp'; fi`
5416
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/SparseBitVectorTest.Tpo $(DEPDIR)/SparseBitVectorTest.Po
5417 5417
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5418
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SparseBitVectorTest.cpp' object='llvmunittest_ADT-SparseBitVectorTest.obj' libtool=no @AMDEPBACKSLASH@
5418
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/SparseBitVectorTest.cpp' object='SparseBitVectorTest.obj' libtool=no @AMDEPBACKSLASH@
5419 5419
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5420
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-SparseBitVectorTest.obj `if test -f 'llvm/unittests/ADT/SparseBitVectorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SparseBitVectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SparseBitVectorTest.cpp'; fi`
5420
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SparseBitVectorTest.obj `if test -f 'llvm/unittests/ADT/SparseBitVectorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/SparseBitVectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/SparseBitVectorTest.cpp'; fi`
5421 5421
 
5422
-llvmunittest_ADT-StringMapTest.o: llvm/unittests/ADT/StringMapTest.cpp
5423
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-StringMapTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-StringMapTest.Tpo -c -o llvmunittest_ADT-StringMapTest.o `test -f 'llvm/unittests/ADT/StringMapTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/StringMapTest.cpp
5424
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-StringMapTest.Tpo $(DEPDIR)/llvmunittest_ADT-StringMapTest.Po
5422
+StringMapTest.o: llvm/unittests/ADT/StringMapTest.cpp
5423
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringMapTest.o -MD -MP -MF $(DEPDIR)/StringMapTest.Tpo -c -o StringMapTest.o `test -f 'llvm/unittests/ADT/StringMapTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/StringMapTest.cpp
5424
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/StringMapTest.Tpo $(DEPDIR)/StringMapTest.Po
5425 5425
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5426
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/StringMapTest.cpp' object='llvmunittest_ADT-StringMapTest.o' libtool=no @AMDEPBACKSLASH@
5426
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/StringMapTest.cpp' object='StringMapTest.o' libtool=no @AMDEPBACKSLASH@
5427 5427
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5428
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-StringMapTest.o `test -f 'llvm/unittests/ADT/StringMapTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/StringMapTest.cpp
5428
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringMapTest.o `test -f 'llvm/unittests/ADT/StringMapTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/StringMapTest.cpp
5429 5429
 
5430
-llvmunittest_ADT-StringMapTest.obj: llvm/unittests/ADT/StringMapTest.cpp
5431
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-StringMapTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-StringMapTest.Tpo -c -o llvmunittest_ADT-StringMapTest.obj `if test -f 'llvm/unittests/ADT/StringMapTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/StringMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/StringMapTest.cpp'; fi`
5432
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-StringMapTest.Tpo $(DEPDIR)/llvmunittest_ADT-StringMapTest.Po
5430
+StringMapTest.obj: llvm/unittests/ADT/StringMapTest.cpp
5431
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringMapTest.obj -MD -MP -MF $(DEPDIR)/StringMapTest.Tpo -c -o StringMapTest.obj `if test -f 'llvm/unittests/ADT/StringMapTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/StringMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/StringMapTest.cpp'; fi`
5432
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/StringMapTest.Tpo $(DEPDIR)/StringMapTest.Po
5433 5433
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5434
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/StringMapTest.cpp' object='llvmunittest_ADT-StringMapTest.obj' libtool=no @AMDEPBACKSLASH@
5434
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/StringMapTest.cpp' object='StringMapTest.obj' libtool=no @AMDEPBACKSLASH@
5435 5435
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5436
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-StringMapTest.obj `if test -f 'llvm/unittests/ADT/StringMapTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/StringMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/StringMapTest.cpp'; fi`
5436
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringMapTest.obj `if test -f 'llvm/unittests/ADT/StringMapTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/StringMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/StringMapTest.cpp'; fi`
5437 5437
 
5438
-llvmunittest_ADT-StringRefTest.o: llvm/unittests/ADT/StringRefTest.cpp
5439
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-StringRefTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-StringRefTest.Tpo -c -o llvmunittest_ADT-StringRefTest.o `test -f 'llvm/unittests/ADT/StringRefTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/StringRefTest.cpp
5440
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-StringRefTest.Tpo $(DEPDIR)/llvmunittest_ADT-StringRefTest.Po
5438
+StringRefTest.o: llvm/unittests/ADT/StringRefTest.cpp
5439
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringRefTest.o -MD -MP -MF $(DEPDIR)/StringRefTest.Tpo -c -o StringRefTest.o `test -f 'llvm/unittests/ADT/StringRefTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/StringRefTest.cpp
5440
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/StringRefTest.Tpo $(DEPDIR)/StringRefTest.Po
5441 5441
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5442
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/StringRefTest.cpp' object='llvmunittest_ADT-StringRefTest.o' libtool=no @AMDEPBACKSLASH@
5442
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/StringRefTest.cpp' object='StringRefTest.o' libtool=no @AMDEPBACKSLASH@
5443 5443
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5444
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-StringRefTest.o `test -f 'llvm/unittests/ADT/StringRefTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/StringRefTest.cpp
5444
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringRefTest.o `test -f 'llvm/unittests/ADT/StringRefTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/StringRefTest.cpp
5445 5445
 
5446
-llvmunittest_ADT-StringRefTest.obj: llvm/unittests/ADT/StringRefTest.cpp
5447
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-StringRefTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-StringRefTest.Tpo -c -o llvmunittest_ADT-StringRefTest.obj `if test -f 'llvm/unittests/ADT/StringRefTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/StringRefTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/StringRefTest.cpp'; fi`
5448
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-StringRefTest.Tpo $(DEPDIR)/llvmunittest_ADT-StringRefTest.Po
5446
+StringRefTest.obj: llvm/unittests/ADT/StringRefTest.cpp
5447
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT StringRefTest.obj -MD -MP -MF $(DEPDIR)/StringRefTest.Tpo -c -o StringRefTest.obj `if test -f 'llvm/unittests/ADT/StringRefTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/StringRefTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/StringRefTest.cpp'; fi`
5448
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/StringRefTest.Tpo $(DEPDIR)/StringRefTest.Po
5449 5449
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5450
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/StringRefTest.cpp' object='llvmunittest_ADT-StringRefTest.obj' libtool=no @AMDEPBACKSLASH@
5450
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/StringRefTest.cpp' object='StringRefTest.obj' libtool=no @AMDEPBACKSLASH@
5451 5451
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5452
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-StringRefTest.obj `if test -f 'llvm/unittests/ADT/StringRefTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/StringRefTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/StringRefTest.cpp'; fi`
5452
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o StringRefTest.obj `if test -f 'llvm/unittests/ADT/StringRefTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/StringRefTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/StringRefTest.cpp'; fi`
5453 5453
 
5454
-llvmunittest_ADT-TripleTest.o: llvm/unittests/ADT/TripleTest.cpp
5455
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-TripleTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-TripleTest.Tpo -c -o llvmunittest_ADT-TripleTest.o `test -f 'llvm/unittests/ADT/TripleTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/TripleTest.cpp
5456
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-TripleTest.Tpo $(DEPDIR)/llvmunittest_ADT-TripleTest.Po
5454
+TripleTest.o: llvm/unittests/ADT/TripleTest.cpp
5455
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TripleTest.o -MD -MP -MF $(DEPDIR)/TripleTest.Tpo -c -o TripleTest.o `test -f 'llvm/unittests/ADT/TripleTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/TripleTest.cpp
5456
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TripleTest.Tpo $(DEPDIR)/TripleTest.Po
5457 5457
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5458
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/TripleTest.cpp' object='llvmunittest_ADT-TripleTest.o' libtool=no @AMDEPBACKSLASH@
5458
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/TripleTest.cpp' object='TripleTest.o' libtool=no @AMDEPBACKSLASH@
5459 5459
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5460
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-TripleTest.o `test -f 'llvm/unittests/ADT/TripleTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/TripleTest.cpp
5460
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TripleTest.o `test -f 'llvm/unittests/ADT/TripleTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/TripleTest.cpp
5461 5461
 
5462
-llvmunittest_ADT-TripleTest.obj: llvm/unittests/ADT/TripleTest.cpp
5463
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-TripleTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-TripleTest.Tpo -c -o llvmunittest_ADT-TripleTest.obj `if test -f 'llvm/unittests/ADT/TripleTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/TripleTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/TripleTest.cpp'; fi`
5464
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-TripleTest.Tpo $(DEPDIR)/llvmunittest_ADT-TripleTest.Po
5462
+TripleTest.obj: llvm/unittests/ADT/TripleTest.cpp
5463
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TripleTest.obj -MD -MP -MF $(DEPDIR)/TripleTest.Tpo -c -o TripleTest.obj `if test -f 'llvm/unittests/ADT/TripleTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/TripleTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/TripleTest.cpp'; fi`
5464
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TripleTest.Tpo $(DEPDIR)/TripleTest.Po
5465 5465
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5466
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/TripleTest.cpp' object='llvmunittest_ADT-TripleTest.obj' libtool=no @AMDEPBACKSLASH@
5466
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/TripleTest.cpp' object='TripleTest.obj' libtool=no @AMDEPBACKSLASH@
5467 5467
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5468
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-TripleTest.obj `if test -f 'llvm/unittests/ADT/TripleTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/TripleTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/TripleTest.cpp'; fi`
5468
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TripleTest.obj `if test -f 'llvm/unittests/ADT/TripleTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/TripleTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/TripleTest.cpp'; fi`
5469 5469
 
5470
-llvmunittest_ADT-TwineTest.o: llvm/unittests/ADT/TwineTest.cpp
5471
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-TwineTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-TwineTest.Tpo -c -o llvmunittest_ADT-TwineTest.o `test -f 'llvm/unittests/ADT/TwineTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/TwineTest.cpp
5472
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-TwineTest.Tpo $(DEPDIR)/llvmunittest_ADT-TwineTest.Po
5470
+TwineTest.o: llvm/unittests/ADT/TwineTest.cpp
5471
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TwineTest.o -MD -MP -MF $(DEPDIR)/TwineTest.Tpo -c -o TwineTest.o `test -f 'llvm/unittests/ADT/TwineTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/TwineTest.cpp
5472
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TwineTest.Tpo $(DEPDIR)/TwineTest.Po
5473 5473
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5474
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/TwineTest.cpp' object='llvmunittest_ADT-TwineTest.o' libtool=no @AMDEPBACKSLASH@
5474
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/TwineTest.cpp' object='TwineTest.o' libtool=no @AMDEPBACKSLASH@
5475 5475
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5476
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-TwineTest.o `test -f 'llvm/unittests/ADT/TwineTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/TwineTest.cpp
5476
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TwineTest.o `test -f 'llvm/unittests/ADT/TwineTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ADT/TwineTest.cpp
5477 5477
 
5478
-llvmunittest_ADT-TwineTest.obj: llvm/unittests/ADT/TwineTest.cpp
5479
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ADT-TwineTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ADT-TwineTest.Tpo -c -o llvmunittest_ADT-TwineTest.obj `if test -f 'llvm/unittests/ADT/TwineTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/TwineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/TwineTest.cpp'; fi`
5480
-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ADT-TwineTest.Tpo $(DEPDIR)/llvmunittest_ADT-TwineTest.Po
5478
+TwineTest.obj: llvm/unittests/ADT/TwineTest.cpp
5479
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT TwineTest.obj -MD -MP -MF $(DEPDIR)/TwineTest.Tpo -c -o TwineTest.obj `if test -f 'llvm/unittests/ADT/TwineTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/TwineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/TwineTest.cpp'; fi`
5480
+@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/TwineTest.Tpo $(DEPDIR)/TwineTest.Po
5481 5481
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5482
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/TwineTest.cpp' object='llvmunittest_ADT-TwineTest.obj' libtool=no @AMDEPBACKSLASH@
5482
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ADT/TwineTest.cpp' object='TwineTest.obj' libtool=no @AMDEPBACKSLASH@
5483 5483
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5484
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ADT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ADT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ADT-TwineTest.obj `if test -f 'llvm/unittests/ADT/TwineTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/TwineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/TwineTest.cpp'; fi`
5484
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o TwineTest.obj `if test -f 'llvm/unittests/ADT/TwineTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ADT/TwineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ADT/TwineTest.cpp'; fi`
5485 5485
 
5486 5486
 llvmunittest_ExecutionEngine-ExecutionEngineTest.o: llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
5487
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ExecutionEngine_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ExecutionEngine_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ExecutionEngine-ExecutionEngineTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Tpo -c -o llvmunittest_ExecutionEngine-ExecutionEngineTest.o `test -f 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
5487
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ExecutionEngine_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ExecutionEngine-ExecutionEngineTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Tpo -c -o llvmunittest_ExecutionEngine-ExecutionEngineTest.o `test -f 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
5488 5488
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Tpo $(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Po
5489 5489
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5490 5490
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp' object='llvmunittest_ExecutionEngine-ExecutionEngineTest.o' libtool=no @AMDEPBACKSLASH@
5491 5491
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5492
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ExecutionEngine_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ExecutionEngine_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ExecutionEngine-ExecutionEngineTest.o `test -f 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
5492
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ExecutionEngine_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ExecutionEngine-ExecutionEngineTest.o `test -f 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
5493 5493
 
5494 5494
 llvmunittest_ExecutionEngine-ExecutionEngineTest.obj: llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
5495
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ExecutionEngine_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ExecutionEngine_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ExecutionEngine-ExecutionEngineTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Tpo -c -o llvmunittest_ExecutionEngine-ExecutionEngineTest.obj `if test -f 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; fi`
5495
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ExecutionEngine_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_ExecutionEngine-ExecutionEngineTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Tpo -c -o llvmunittest_ExecutionEngine-ExecutionEngineTest.obj `if test -f 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; fi`
5496 5496
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Tpo $(DEPDIR)/llvmunittest_ExecutionEngine-ExecutionEngineTest.Po
5497 5497
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5498 5498
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp' object='llvmunittest_ExecutionEngine-ExecutionEngineTest.obj' libtool=no @AMDEPBACKSLASH@
5499 5499
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5500
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ExecutionEngine_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_ExecutionEngine_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ExecutionEngine-ExecutionEngineTest.obj `if test -f 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; fi`
5500
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_ExecutionEngine_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_ExecutionEngine-ExecutionEngineTest.obj `if test -f 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp'; fi`
5501 5501
 
5502 5502
 llvmunittest_JIT-JITEventListenerTest.o: llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp
5503
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITEventListenerTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Tpo -c -o llvmunittest_JIT-JITEventListenerTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp
5503
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITEventListenerTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Tpo -c -o llvmunittest_JIT-JITEventListenerTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp
5504 5504
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Tpo $(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Po
5505 5505
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5506 5506
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp' object='llvmunittest_JIT-JITEventListenerTest.o' libtool=no @AMDEPBACKSLASH@
5507 5507
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5508
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITEventListenerTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp
5508
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITEventListenerTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp
5509 5509
 
5510 5510
 llvmunittest_JIT-JITEventListenerTest.obj: llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp
5511
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITEventListenerTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Tpo -c -o llvmunittest_JIT-JITEventListenerTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; fi`
5511
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITEventListenerTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Tpo -c -o llvmunittest_JIT-JITEventListenerTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; fi`
5512 5512
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Tpo $(DEPDIR)/llvmunittest_JIT-JITEventListenerTest.Po
5513 5513
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5514 5514
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp' object='llvmunittest_JIT-JITEventListenerTest.obj' libtool=no @AMDEPBACKSLASH@
5515 5515
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5516
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITEventListenerTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; fi`
5516
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITEventListenerTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITEventListenerTest.cpp'; fi`
5517 5517
 
5518 5518
 llvmunittest_JIT-JITMemoryManagerTest.o: llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp
5519
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITMemoryManagerTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Tpo -c -o llvmunittest_JIT-JITMemoryManagerTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp
5519
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITMemoryManagerTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Tpo -c -o llvmunittest_JIT-JITMemoryManagerTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp
5520 5520
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Tpo $(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Po
5521 5521
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5522 5522
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp' object='llvmunittest_JIT-JITMemoryManagerTest.o' libtool=no @AMDEPBACKSLASH@
5523 5523
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5524
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITMemoryManagerTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp
5524
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITMemoryManagerTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp
5525 5525
 
5526 5526
 llvmunittest_JIT-JITMemoryManagerTest.obj: llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp
5527
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITMemoryManagerTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Tpo -c -o llvmunittest_JIT-JITMemoryManagerTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; fi`
5527
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITMemoryManagerTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Tpo -c -o llvmunittest_JIT-JITMemoryManagerTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; fi`
5528 5528
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Tpo $(DEPDIR)/llvmunittest_JIT-JITMemoryManagerTest.Po
5529 5529
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5530 5530
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp' object='llvmunittest_JIT-JITMemoryManagerTest.obj' libtool=no @AMDEPBACKSLASH@
5531 5531
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5532
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITMemoryManagerTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; fi`
5532
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITMemoryManagerTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITMemoryManagerTest.cpp'; fi`
5533 5533
 
5534 5534
 llvmunittest_JIT-JITTest.o: llvm/unittests/ExecutionEngine/JIT/JITTest.cpp
5535
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITTest.Tpo -c -o llvmunittest_JIT-JITTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITTest.cpp
5535
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITTest.Tpo -c -o llvmunittest_JIT-JITTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITTest.cpp
5536 5536
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_JIT-JITTest.Tpo $(DEPDIR)/llvmunittest_JIT-JITTest.Po
5537 5537
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5538 5538
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ExecutionEngine/JIT/JITTest.cpp' object='llvmunittest_JIT-JITTest.o' libtool=no @AMDEPBACKSLASH@
5539 5539
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5540
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITTest.cpp
5540
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITTest.o `test -f 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp' || echo '$(srcdir)/'`llvm/unittests/ExecutionEngine/JIT/JITTest.cpp
5541 5541
 
5542 5542
 llvmunittest_JIT-JITTest.obj: llvm/unittests/ExecutionEngine/JIT/JITTest.cpp
5543
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITTest.Tpo -c -o llvmunittest_JIT-JITTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; fi`
5543
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_JIT-JITTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_JIT-JITTest.Tpo -c -o llvmunittest_JIT-JITTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; fi`
5544 5544
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_JIT-JITTest.Tpo $(DEPDIR)/llvmunittest_JIT-JITTest.Po
5545 5545
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5546 5546
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/ExecutionEngine/JIT/JITTest.cpp' object='llvmunittest_JIT-JITTest.obj' libtool=no @AMDEPBACKSLASH@
5547 5547
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5548
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_JIT_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; fi`
5548
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_JIT_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_JIT-JITTest.obj `if test -f 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp'; fi`
5549 5549
 
5550 5550
 llvmunittest_Support-AllocatorTest.o: llvm/unittests/Support/AllocatorTest.cpp
5551
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-AllocatorTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-AllocatorTest.Tpo -c -o llvmunittest_Support-AllocatorTest.o `test -f 'llvm/unittests/Support/AllocatorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/AllocatorTest.cpp
5551
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-AllocatorTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-AllocatorTest.Tpo -c -o llvmunittest_Support-AllocatorTest.o `test -f 'llvm/unittests/Support/AllocatorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/AllocatorTest.cpp
5552 5552
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-AllocatorTest.Tpo $(DEPDIR)/llvmunittest_Support-AllocatorTest.Po
5553 5553
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5554 5554
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/AllocatorTest.cpp' object='llvmunittest_Support-AllocatorTest.o' libtool=no @AMDEPBACKSLASH@
5555 5555
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5556
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-AllocatorTest.o `test -f 'llvm/unittests/Support/AllocatorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/AllocatorTest.cpp
5556
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-AllocatorTest.o `test -f 'llvm/unittests/Support/AllocatorTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/AllocatorTest.cpp
5557 5557
 
5558 5558
 llvmunittest_Support-AllocatorTest.obj: llvm/unittests/Support/AllocatorTest.cpp
5559
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-AllocatorTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-AllocatorTest.Tpo -c -o llvmunittest_Support-AllocatorTest.obj `if test -f 'llvm/unittests/Support/AllocatorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/AllocatorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/AllocatorTest.cpp'; fi`
5559
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-AllocatorTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-AllocatorTest.Tpo -c -o llvmunittest_Support-AllocatorTest.obj `if test -f 'llvm/unittests/Support/AllocatorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/AllocatorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/AllocatorTest.cpp'; fi`
5560 5560
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-AllocatorTest.Tpo $(DEPDIR)/llvmunittest_Support-AllocatorTest.Po
5561 5561
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5562 5562
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/AllocatorTest.cpp' object='llvmunittest_Support-AllocatorTest.obj' libtool=no @AMDEPBACKSLASH@
5563 5563
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5564
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-AllocatorTest.obj `if test -f 'llvm/unittests/Support/AllocatorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/AllocatorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/AllocatorTest.cpp'; fi`
5564
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-AllocatorTest.obj `if test -f 'llvm/unittests/Support/AllocatorTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/AllocatorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/AllocatorTest.cpp'; fi`
5565 5565
 
5566 5566
 llvmunittest_Support-ConstantRangeTest.o: llvm/unittests/Support/ConstantRangeTest.cpp
5567
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-ConstantRangeTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-ConstantRangeTest.Tpo -c -o llvmunittest_Support-ConstantRangeTest.o `test -f 'llvm/unittests/Support/ConstantRangeTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/ConstantRangeTest.cpp
5567
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-ConstantRangeTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-ConstantRangeTest.Tpo -c -o llvmunittest_Support-ConstantRangeTest.o `test -f 'llvm/unittests/Support/ConstantRangeTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/ConstantRangeTest.cpp
5568 5568
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-ConstantRangeTest.Tpo $(DEPDIR)/llvmunittest_Support-ConstantRangeTest.Po
5569 5569
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5570 5570
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/ConstantRangeTest.cpp' object='llvmunittest_Support-ConstantRangeTest.o' libtool=no @AMDEPBACKSLASH@
5571 5571
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5572
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-ConstantRangeTest.o `test -f 'llvm/unittests/Support/ConstantRangeTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/ConstantRangeTest.cpp
5572
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-ConstantRangeTest.o `test -f 'llvm/unittests/Support/ConstantRangeTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/ConstantRangeTest.cpp
5573 5573
 
5574 5574
 llvmunittest_Support-ConstantRangeTest.obj: llvm/unittests/Support/ConstantRangeTest.cpp
5575
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-ConstantRangeTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-ConstantRangeTest.Tpo -c -o llvmunittest_Support-ConstantRangeTest.obj `if test -f 'llvm/unittests/Support/ConstantRangeTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/ConstantRangeTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/ConstantRangeTest.cpp'; fi`
5575
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-ConstantRangeTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-ConstantRangeTest.Tpo -c -o llvmunittest_Support-ConstantRangeTest.obj `if test -f 'llvm/unittests/Support/ConstantRangeTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/ConstantRangeTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/ConstantRangeTest.cpp'; fi`
5576 5576
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-ConstantRangeTest.Tpo $(DEPDIR)/llvmunittest_Support-ConstantRangeTest.Po
5577 5577
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5578 5578
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/ConstantRangeTest.cpp' object='llvmunittest_Support-ConstantRangeTest.obj' libtool=no @AMDEPBACKSLASH@
5579 5579
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5580
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-ConstantRangeTest.obj `if test -f 'llvm/unittests/Support/ConstantRangeTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/ConstantRangeTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/ConstantRangeTest.cpp'; fi`
5580
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-ConstantRangeTest.obj `if test -f 'llvm/unittests/Support/ConstantRangeTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/ConstantRangeTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/ConstantRangeTest.cpp'; fi`
5581 5581
 
5582 5582
 llvmunittest_Support-MathExtrasTest.o: llvm/unittests/Support/MathExtrasTest.cpp
5583
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-MathExtrasTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-MathExtrasTest.Tpo -c -o llvmunittest_Support-MathExtrasTest.o `test -f 'llvm/unittests/Support/MathExtrasTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/MathExtrasTest.cpp
5583
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-MathExtrasTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-MathExtrasTest.Tpo -c -o llvmunittest_Support-MathExtrasTest.o `test -f 'llvm/unittests/Support/MathExtrasTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/MathExtrasTest.cpp
5584 5584
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-MathExtrasTest.Tpo $(DEPDIR)/llvmunittest_Support-MathExtrasTest.Po
5585 5585
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5586 5586
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/MathExtrasTest.cpp' object='llvmunittest_Support-MathExtrasTest.o' libtool=no @AMDEPBACKSLASH@
5587 5587
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5588
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-MathExtrasTest.o `test -f 'llvm/unittests/Support/MathExtrasTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/MathExtrasTest.cpp
5588
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-MathExtrasTest.o `test -f 'llvm/unittests/Support/MathExtrasTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/MathExtrasTest.cpp
5589 5589
 
5590 5590
 llvmunittest_Support-MathExtrasTest.obj: llvm/unittests/Support/MathExtrasTest.cpp
5591
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-MathExtrasTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-MathExtrasTest.Tpo -c -o llvmunittest_Support-MathExtrasTest.obj `if test -f 'llvm/unittests/Support/MathExtrasTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/MathExtrasTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/MathExtrasTest.cpp'; fi`
5591
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-MathExtrasTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-MathExtrasTest.Tpo -c -o llvmunittest_Support-MathExtrasTest.obj `if test -f 'llvm/unittests/Support/MathExtrasTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/MathExtrasTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/MathExtrasTest.cpp'; fi`
5592 5592
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-MathExtrasTest.Tpo $(DEPDIR)/llvmunittest_Support-MathExtrasTest.Po
5593 5593
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5594 5594
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/MathExtrasTest.cpp' object='llvmunittest_Support-MathExtrasTest.obj' libtool=no @AMDEPBACKSLASH@
5595 5595
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5596
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-MathExtrasTest.obj `if test -f 'llvm/unittests/Support/MathExtrasTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/MathExtrasTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/MathExtrasTest.cpp'; fi`
5596
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-MathExtrasTest.obj `if test -f 'llvm/unittests/Support/MathExtrasTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/MathExtrasTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/MathExtrasTest.cpp'; fi`
5597 5597
 
5598 5598
 llvmunittest_Support-RegexTest.o: llvm/unittests/Support/RegexTest.cpp
5599
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-RegexTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-RegexTest.Tpo -c -o llvmunittest_Support-RegexTest.o `test -f 'llvm/unittests/Support/RegexTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/RegexTest.cpp
5599
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-RegexTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-RegexTest.Tpo -c -o llvmunittest_Support-RegexTest.o `test -f 'llvm/unittests/Support/RegexTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/RegexTest.cpp
5600 5600
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-RegexTest.Tpo $(DEPDIR)/llvmunittest_Support-RegexTest.Po
5601 5601
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5602 5602
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/RegexTest.cpp' object='llvmunittest_Support-RegexTest.o' libtool=no @AMDEPBACKSLASH@
5603 5603
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5604
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-RegexTest.o `test -f 'llvm/unittests/Support/RegexTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/RegexTest.cpp
5604
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-RegexTest.o `test -f 'llvm/unittests/Support/RegexTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/RegexTest.cpp
5605 5605
 
5606 5606
 llvmunittest_Support-RegexTest.obj: llvm/unittests/Support/RegexTest.cpp
5607
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-RegexTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-RegexTest.Tpo -c -o llvmunittest_Support-RegexTest.obj `if test -f 'llvm/unittests/Support/RegexTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/RegexTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/RegexTest.cpp'; fi`
5607
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-RegexTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-RegexTest.Tpo -c -o llvmunittest_Support-RegexTest.obj `if test -f 'llvm/unittests/Support/RegexTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/RegexTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/RegexTest.cpp'; fi`
5608 5608
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-RegexTest.Tpo $(DEPDIR)/llvmunittest_Support-RegexTest.Po
5609 5609
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5610 5610
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/RegexTest.cpp' object='llvmunittest_Support-RegexTest.obj' libtool=no @AMDEPBACKSLASH@
5611 5611
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5612
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-RegexTest.obj `if test -f 'llvm/unittests/Support/RegexTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/RegexTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/RegexTest.cpp'; fi`
5612
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-RegexTest.obj `if test -f 'llvm/unittests/Support/RegexTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/RegexTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/RegexTest.cpp'; fi`
5613 5613
 
5614 5614
 llvmunittest_Support-TypeBuilderTest.o: llvm/unittests/Support/TypeBuilderTest.cpp
5615
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-TypeBuilderTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-TypeBuilderTest.Tpo -c -o llvmunittest_Support-TypeBuilderTest.o `test -f 'llvm/unittests/Support/TypeBuilderTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/TypeBuilderTest.cpp
5615
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-TypeBuilderTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-TypeBuilderTest.Tpo -c -o llvmunittest_Support-TypeBuilderTest.o `test -f 'llvm/unittests/Support/TypeBuilderTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/TypeBuilderTest.cpp
5616 5616
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-TypeBuilderTest.Tpo $(DEPDIR)/llvmunittest_Support-TypeBuilderTest.Po
5617 5617
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5618 5618
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/TypeBuilderTest.cpp' object='llvmunittest_Support-TypeBuilderTest.o' libtool=no @AMDEPBACKSLASH@
5619 5619
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5620
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-TypeBuilderTest.o `test -f 'llvm/unittests/Support/TypeBuilderTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/TypeBuilderTest.cpp
5620
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-TypeBuilderTest.o `test -f 'llvm/unittests/Support/TypeBuilderTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/TypeBuilderTest.cpp
5621 5621
 
5622 5622
 llvmunittest_Support-TypeBuilderTest.obj: llvm/unittests/Support/TypeBuilderTest.cpp
5623
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-TypeBuilderTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-TypeBuilderTest.Tpo -c -o llvmunittest_Support-TypeBuilderTest.obj `if test -f 'llvm/unittests/Support/TypeBuilderTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/TypeBuilderTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/TypeBuilderTest.cpp'; fi`
5623
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-TypeBuilderTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-TypeBuilderTest.Tpo -c -o llvmunittest_Support-TypeBuilderTest.obj `if test -f 'llvm/unittests/Support/TypeBuilderTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/TypeBuilderTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/TypeBuilderTest.cpp'; fi`
5624 5624
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-TypeBuilderTest.Tpo $(DEPDIR)/llvmunittest_Support-TypeBuilderTest.Po
5625 5625
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5626 5626
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/TypeBuilderTest.cpp' object='llvmunittest_Support-TypeBuilderTest.obj' libtool=no @AMDEPBACKSLASH@
5627 5627
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5628
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-TypeBuilderTest.obj `if test -f 'llvm/unittests/Support/TypeBuilderTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/TypeBuilderTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/TypeBuilderTest.cpp'; fi`
5628
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-TypeBuilderTest.obj `if test -f 'llvm/unittests/Support/TypeBuilderTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/TypeBuilderTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/TypeBuilderTest.cpp'; fi`
5629 5629
 
5630 5630
 llvmunittest_Support-ValueHandleTest.o: llvm/unittests/Support/ValueHandleTest.cpp
5631
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-ValueHandleTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-ValueHandleTest.Tpo -c -o llvmunittest_Support-ValueHandleTest.o `test -f 'llvm/unittests/Support/ValueHandleTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/ValueHandleTest.cpp
5631
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-ValueHandleTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-ValueHandleTest.Tpo -c -o llvmunittest_Support-ValueHandleTest.o `test -f 'llvm/unittests/Support/ValueHandleTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/ValueHandleTest.cpp
5632 5632
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-ValueHandleTest.Tpo $(DEPDIR)/llvmunittest_Support-ValueHandleTest.Po
5633 5633
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5634 5634
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/ValueHandleTest.cpp' object='llvmunittest_Support-ValueHandleTest.o' libtool=no @AMDEPBACKSLASH@
5635 5635
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5636
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-ValueHandleTest.o `test -f 'llvm/unittests/Support/ValueHandleTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/ValueHandleTest.cpp
5636
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-ValueHandleTest.o `test -f 'llvm/unittests/Support/ValueHandleTest.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/ValueHandleTest.cpp
5637 5637
 
5638 5638
 llvmunittest_Support-ValueHandleTest.obj: llvm/unittests/Support/ValueHandleTest.cpp
5639
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-ValueHandleTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-ValueHandleTest.Tpo -c -o llvmunittest_Support-ValueHandleTest.obj `if test -f 'llvm/unittests/Support/ValueHandleTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/ValueHandleTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/ValueHandleTest.cpp'; fi`
5639
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-ValueHandleTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-ValueHandleTest.Tpo -c -o llvmunittest_Support-ValueHandleTest.obj `if test -f 'llvm/unittests/Support/ValueHandleTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/ValueHandleTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/ValueHandleTest.cpp'; fi`
5640 5640
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-ValueHandleTest.Tpo $(DEPDIR)/llvmunittest_Support-ValueHandleTest.Po
5641 5641
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5642 5642
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/ValueHandleTest.cpp' object='llvmunittest_Support-ValueHandleTest.obj' libtool=no @AMDEPBACKSLASH@
5643 5643
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5644
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-ValueHandleTest.obj `if test -f 'llvm/unittests/Support/ValueHandleTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/ValueHandleTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/ValueHandleTest.cpp'; fi`
5644
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-ValueHandleTest.obj `if test -f 'llvm/unittests/Support/ValueHandleTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/ValueHandleTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/ValueHandleTest.cpp'; fi`
5645 5645
 
5646 5646
 llvmunittest_Support-raw_ostream_test.o: llvm/unittests/Support/raw_ostream_test.cpp
5647
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-raw_ostream_test.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-raw_ostream_test.Tpo -c -o llvmunittest_Support-raw_ostream_test.o `test -f 'llvm/unittests/Support/raw_ostream_test.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/raw_ostream_test.cpp
5647
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-raw_ostream_test.o -MD -MP -MF $(DEPDIR)/llvmunittest_Support-raw_ostream_test.Tpo -c -o llvmunittest_Support-raw_ostream_test.o `test -f 'llvm/unittests/Support/raw_ostream_test.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/raw_ostream_test.cpp
5648 5648
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-raw_ostream_test.Tpo $(DEPDIR)/llvmunittest_Support-raw_ostream_test.Po
5649 5649
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5650 5650
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/raw_ostream_test.cpp' object='llvmunittest_Support-raw_ostream_test.o' libtool=no @AMDEPBACKSLASH@
5651 5651
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5652
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-raw_ostream_test.o `test -f 'llvm/unittests/Support/raw_ostream_test.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/raw_ostream_test.cpp
5652
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-raw_ostream_test.o `test -f 'llvm/unittests/Support/raw_ostream_test.cpp' || echo '$(srcdir)/'`llvm/unittests/Support/raw_ostream_test.cpp
5653 5653
 
5654 5654
 llvmunittest_Support-raw_ostream_test.obj: llvm/unittests/Support/raw_ostream_test.cpp
5655
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-raw_ostream_test.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-raw_ostream_test.Tpo -c -o llvmunittest_Support-raw_ostream_test.obj `if test -f 'llvm/unittests/Support/raw_ostream_test.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/raw_ostream_test.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/raw_ostream_test.cpp'; fi`
5655
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_Support-raw_ostream_test.obj -MD -MP -MF $(DEPDIR)/llvmunittest_Support-raw_ostream_test.Tpo -c -o llvmunittest_Support-raw_ostream_test.obj `if test -f 'llvm/unittests/Support/raw_ostream_test.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/raw_ostream_test.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/raw_ostream_test.cpp'; fi`
5656 5656
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_Support-raw_ostream_test.Tpo $(DEPDIR)/llvmunittest_Support-raw_ostream_test.Po
5657 5657
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5658 5658
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/Support/raw_ostream_test.cpp' object='llvmunittest_Support-raw_ostream_test.obj' libtool=no @AMDEPBACKSLASH@
5659 5659
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5660
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_Support_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-raw_ostream_test.obj `if test -f 'llvm/unittests/Support/raw_ostream_test.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/raw_ostream_test.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/raw_ostream_test.cpp'; fi`
5660
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_Support_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_Support-raw_ostream_test.obj `if test -f 'llvm/unittests/Support/raw_ostream_test.cpp'; then $(CYGPATH_W) 'llvm/unittests/Support/raw_ostream_test.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/Support/raw_ostream_test.cpp'; fi`
5661 5661
 
5662 5662
 llvmunittest_VMCore-CallGraphSCCPass.o: llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp
5663
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-CallGraphSCCPass.o -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-CallGraphSCCPass.Tpo -c -o llvmunittest_VMCore-CallGraphSCCPass.o `test -f 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp
5663
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-CallGraphSCCPass.o -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-CallGraphSCCPass.Tpo -c -o llvmunittest_VMCore-CallGraphSCCPass.o `test -f 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp
5664 5664
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_VMCore-CallGraphSCCPass.Tpo $(DEPDIR)/llvmunittest_VMCore-CallGraphSCCPass.Po
5665 5665
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5666 5666
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp' object='llvmunittest_VMCore-CallGraphSCCPass.o' libtool=no @AMDEPBACKSLASH@
5667 5667
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5668
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-CallGraphSCCPass.o `test -f 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp
5668
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-CallGraphSCCPass.o `test -f 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp' || echo '$(srcdir)/'`llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp
5669 5669
 
5670 5670
 llvmunittest_VMCore-CallGraphSCCPass.obj: llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp
5671
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-CallGraphSCCPass.obj -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-CallGraphSCCPass.Tpo -c -o llvmunittest_VMCore-CallGraphSCCPass.obj `if test -f 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; then $(CYGPATH_W) 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; fi`
5671
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-CallGraphSCCPass.obj -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-CallGraphSCCPass.Tpo -c -o llvmunittest_VMCore-CallGraphSCCPass.obj `if test -f 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; then $(CYGPATH_W) 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; fi`
5672 5672
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_VMCore-CallGraphSCCPass.Tpo $(DEPDIR)/llvmunittest_VMCore-CallGraphSCCPass.Po
5673 5673
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5674 5674
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp' object='llvmunittest_VMCore-CallGraphSCCPass.obj' libtool=no @AMDEPBACKSLASH@
5675 5675
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5676
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-CallGraphSCCPass.obj `if test -f 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; then $(CYGPATH_W) 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; fi`
5676
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-CallGraphSCCPass.obj `if test -f 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; then $(CYGPATH_W) 'llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp'; fi`
5677 5677
 
5678 5678
 llvmunittest_VMCore-ConstantsTest.o: llvm/unittests/VMCore/ConstantsTest.cpp
5679
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-ConstantsTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-ConstantsTest.Tpo -c -o llvmunittest_VMCore-ConstantsTest.o `test -f 'llvm/unittests/VMCore/ConstantsTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/ConstantsTest.cpp
5679
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-ConstantsTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-ConstantsTest.Tpo -c -o llvmunittest_VMCore-ConstantsTest.o `test -f 'llvm/unittests/VMCore/ConstantsTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/ConstantsTest.cpp
5680 5680
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_VMCore-ConstantsTest.Tpo $(DEPDIR)/llvmunittest_VMCore-ConstantsTest.Po
5681 5681
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5682 5682
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/VMCore/ConstantsTest.cpp' object='llvmunittest_VMCore-ConstantsTest.o' libtool=no @AMDEPBACKSLASH@
5683 5683
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5684
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-ConstantsTest.o `test -f 'llvm/unittests/VMCore/ConstantsTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/ConstantsTest.cpp
5684
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-ConstantsTest.o `test -f 'llvm/unittests/VMCore/ConstantsTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/ConstantsTest.cpp
5685 5685
 
5686 5686
 llvmunittest_VMCore-ConstantsTest.obj: llvm/unittests/VMCore/ConstantsTest.cpp
5687
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-ConstantsTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-ConstantsTest.Tpo -c -o llvmunittest_VMCore-ConstantsTest.obj `if test -f 'llvm/unittests/VMCore/ConstantsTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/ConstantsTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/ConstantsTest.cpp'; fi`
5687
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-ConstantsTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-ConstantsTest.Tpo -c -o llvmunittest_VMCore-ConstantsTest.obj `if test -f 'llvm/unittests/VMCore/ConstantsTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/ConstantsTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/ConstantsTest.cpp'; fi`
5688 5688
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_VMCore-ConstantsTest.Tpo $(DEPDIR)/llvmunittest_VMCore-ConstantsTest.Po
5689 5689
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5690 5690
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/VMCore/ConstantsTest.cpp' object='llvmunittest_VMCore-ConstantsTest.obj' libtool=no @AMDEPBACKSLASH@
5691 5691
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5692
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-ConstantsTest.obj `if test -f 'llvm/unittests/VMCore/ConstantsTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/ConstantsTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/ConstantsTest.cpp'; fi`
5692
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-ConstantsTest.obj `if test -f 'llvm/unittests/VMCore/ConstantsTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/ConstantsTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/ConstantsTest.cpp'; fi`
5693 5693
 
5694 5694
 llvmunittest_VMCore-MetadataTest.o: llvm/unittests/VMCore/MetadataTest.cpp
5695
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-MetadataTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-MetadataTest.Tpo -c -o llvmunittest_VMCore-MetadataTest.o `test -f 'llvm/unittests/VMCore/MetadataTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/MetadataTest.cpp
5695
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-MetadataTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-MetadataTest.Tpo -c -o llvmunittest_VMCore-MetadataTest.o `test -f 'llvm/unittests/VMCore/MetadataTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/MetadataTest.cpp
5696 5696
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_VMCore-MetadataTest.Tpo $(DEPDIR)/llvmunittest_VMCore-MetadataTest.Po
5697 5697
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5698 5698
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/VMCore/MetadataTest.cpp' object='llvmunittest_VMCore-MetadataTest.o' libtool=no @AMDEPBACKSLASH@
5699 5699
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5700
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-MetadataTest.o `test -f 'llvm/unittests/VMCore/MetadataTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/MetadataTest.cpp
5700
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-MetadataTest.o `test -f 'llvm/unittests/VMCore/MetadataTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/MetadataTest.cpp
5701 5701
 
5702 5702
 llvmunittest_VMCore-MetadataTest.obj: llvm/unittests/VMCore/MetadataTest.cpp
5703
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-MetadataTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-MetadataTest.Tpo -c -o llvmunittest_VMCore-MetadataTest.obj `if test -f 'llvm/unittests/VMCore/MetadataTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/MetadataTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/MetadataTest.cpp'; fi`
5703
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-MetadataTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-MetadataTest.Tpo -c -o llvmunittest_VMCore-MetadataTest.obj `if test -f 'llvm/unittests/VMCore/MetadataTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/MetadataTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/MetadataTest.cpp'; fi`
5704 5704
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_VMCore-MetadataTest.Tpo $(DEPDIR)/llvmunittest_VMCore-MetadataTest.Po
5705 5705
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5706 5706
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/VMCore/MetadataTest.cpp' object='llvmunittest_VMCore-MetadataTest.obj' libtool=no @AMDEPBACKSLASH@
5707 5707
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5708
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-MetadataTest.obj `if test -f 'llvm/unittests/VMCore/MetadataTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/MetadataTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/MetadataTest.cpp'; fi`
5708
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-MetadataTest.obj `if test -f 'llvm/unittests/VMCore/MetadataTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/MetadataTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/MetadataTest.cpp'; fi`
5709 5709
 
5710 5710
 llvmunittest_VMCore-PassManagerTest.o: llvm/unittests/VMCore/PassManagerTest.cpp
5711
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-PassManagerTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Tpo -c -o llvmunittest_VMCore-PassManagerTest.o `test -f 'llvm/unittests/VMCore/PassManagerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/PassManagerTest.cpp
5711
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-PassManagerTest.o -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Tpo -c -o llvmunittest_VMCore-PassManagerTest.o `test -f 'llvm/unittests/VMCore/PassManagerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/PassManagerTest.cpp
5712 5712
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Tpo $(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Po
5713 5713
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5714 5714
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/VMCore/PassManagerTest.cpp' object='llvmunittest_VMCore-PassManagerTest.o' libtool=no @AMDEPBACKSLASH@
5715 5715
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5716
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-PassManagerTest.o `test -f 'llvm/unittests/VMCore/PassManagerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/PassManagerTest.cpp
5716
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-PassManagerTest.o `test -f 'llvm/unittests/VMCore/PassManagerTest.cpp' || echo '$(srcdir)/'`llvm/unittests/VMCore/PassManagerTest.cpp
5717 5717
 
5718 5718
 llvmunittest_VMCore-PassManagerTest.obj: llvm/unittests/VMCore/PassManagerTest.cpp
5719
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-PassManagerTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Tpo -c -o llvmunittest_VMCore-PassManagerTest.obj `if test -f 'llvm/unittests/VMCore/PassManagerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/PassManagerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/PassManagerTest.cpp'; fi`
5719
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT llvmunittest_VMCore-PassManagerTest.obj -MD -MP -MF $(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Tpo -c -o llvmunittest_VMCore-PassManagerTest.obj `if test -f 'llvm/unittests/VMCore/PassManagerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/PassManagerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/PassManagerTest.cpp'; fi`
5720 5720
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Tpo $(DEPDIR)/llvmunittest_VMCore-PassManagerTest.Po
5721 5721
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5722 5722
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/unittests/VMCore/PassManagerTest.cpp' object='llvmunittest_VMCore-PassManagerTest.obj' libtool=no @AMDEPBACKSLASH@
5723 5723
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5724
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(llvmunittest_VMCore_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-PassManagerTest.obj `if test -f 'llvm/unittests/VMCore/PassManagerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/PassManagerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/PassManagerTest.cpp'; fi`
5724
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(llvmunittest_VMCore_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o llvmunittest_VMCore-PassManagerTest.obj `if test -f 'llvm/unittests/VMCore/PassManagerTest.cpp'; then $(CYGPATH_W) 'llvm/unittests/VMCore/PassManagerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/unittests/VMCore/PassManagerTest.cpp'; fi`
5725 5725
 
5726 5726
 not-not.o: llvm/utils/not/not.cpp
5727 5727
 @am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(not_CPPFLAGS) $(CPPFLAGS) $(not_CXXFLAGS) $(CXXFLAGS) -MT not-not.o -MD -MP -MF $(DEPDIR)/not-not.Tpo -c -o not-not.o `test -f 'llvm/utils/not/not.cpp' || echo '$(srcdir)/'`llvm/utils/not/not.cpp
... ...
@@ -5740,388 +4164,388 @@ not-not.obj: llvm/utils/not/not.cpp
5740 5740
 @am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(not_CPPFLAGS) $(CPPFLAGS) $(not_CXXFLAGS) $(CXXFLAGS) -c -o not-not.obj `if test -f 'llvm/utils/not/not.cpp'; then $(CYGPATH_W) 'llvm/utils/not/not.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/not/not.cpp'; fi`
5741 5741
 
5742 5742
 tblgen-AsmMatcherEmitter.o: llvm/utils/TableGen/AsmMatcherEmitter.cpp
5743
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-AsmMatcherEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-AsmMatcherEmitter.Tpo -c -o tblgen-AsmMatcherEmitter.o `test -f 'llvm/utils/TableGen/AsmMatcherEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/AsmMatcherEmitter.cpp
5743
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-AsmMatcherEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-AsmMatcherEmitter.Tpo -c -o tblgen-AsmMatcherEmitter.o `test -f 'llvm/utils/TableGen/AsmMatcherEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/AsmMatcherEmitter.cpp
5744 5744
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-AsmMatcherEmitter.Tpo $(DEPDIR)/tblgen-AsmMatcherEmitter.Po
5745 5745
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5746 5746
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/AsmMatcherEmitter.cpp' object='tblgen-AsmMatcherEmitter.o' libtool=no @AMDEPBACKSLASH@
5747 5747
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5748
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-AsmMatcherEmitter.o `test -f 'llvm/utils/TableGen/AsmMatcherEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/AsmMatcherEmitter.cpp
5748
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-AsmMatcherEmitter.o `test -f 'llvm/utils/TableGen/AsmMatcherEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/AsmMatcherEmitter.cpp
5749 5749
 
5750 5750
 tblgen-AsmMatcherEmitter.obj: llvm/utils/TableGen/AsmMatcherEmitter.cpp
5751
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-AsmMatcherEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-AsmMatcherEmitter.Tpo -c -o tblgen-AsmMatcherEmitter.obj `if test -f 'llvm/utils/TableGen/AsmMatcherEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/AsmMatcherEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/AsmMatcherEmitter.cpp'; fi`
5751
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-AsmMatcherEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-AsmMatcherEmitter.Tpo -c -o tblgen-AsmMatcherEmitter.obj `if test -f 'llvm/utils/TableGen/AsmMatcherEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/AsmMatcherEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/AsmMatcherEmitter.cpp'; fi`
5752 5752
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-AsmMatcherEmitter.Tpo $(DEPDIR)/tblgen-AsmMatcherEmitter.Po
5753 5753
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5754 5754
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/AsmMatcherEmitter.cpp' object='tblgen-AsmMatcherEmitter.obj' libtool=no @AMDEPBACKSLASH@
5755 5755
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5756
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-AsmMatcherEmitter.obj `if test -f 'llvm/utils/TableGen/AsmMatcherEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/AsmMatcherEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/AsmMatcherEmitter.cpp'; fi`
5756
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-AsmMatcherEmitter.obj `if test -f 'llvm/utils/TableGen/AsmMatcherEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/AsmMatcherEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/AsmMatcherEmitter.cpp'; fi`
5757 5757
 
5758 5758
 tblgen-AsmWriterEmitter.o: llvm/utils/TableGen/AsmWriterEmitter.cpp
5759
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-AsmWriterEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-AsmWriterEmitter.Tpo -c -o tblgen-AsmWriterEmitter.o `test -f 'llvm/utils/TableGen/AsmWriterEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/AsmWriterEmitter.cpp
5759
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-AsmWriterEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-AsmWriterEmitter.Tpo -c -o tblgen-AsmWriterEmitter.o `test -f 'llvm/utils/TableGen/AsmWriterEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/AsmWriterEmitter.cpp
5760 5760
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-AsmWriterEmitter.Tpo $(DEPDIR)/tblgen-AsmWriterEmitter.Po
5761 5761
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5762 5762
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/AsmWriterEmitter.cpp' object='tblgen-AsmWriterEmitter.o' libtool=no @AMDEPBACKSLASH@
5763 5763
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5764
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-AsmWriterEmitter.o `test -f 'llvm/utils/TableGen/AsmWriterEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/AsmWriterEmitter.cpp
5764
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-AsmWriterEmitter.o `test -f 'llvm/utils/TableGen/AsmWriterEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/AsmWriterEmitter.cpp
5765 5765
 
5766 5766
 tblgen-AsmWriterEmitter.obj: llvm/utils/TableGen/AsmWriterEmitter.cpp
5767
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-AsmWriterEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-AsmWriterEmitter.Tpo -c -o tblgen-AsmWriterEmitter.obj `if test -f 'llvm/utils/TableGen/AsmWriterEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/AsmWriterEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/AsmWriterEmitter.cpp'; fi`
5767
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-AsmWriterEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-AsmWriterEmitter.Tpo -c -o tblgen-AsmWriterEmitter.obj `if test -f 'llvm/utils/TableGen/AsmWriterEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/AsmWriterEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/AsmWriterEmitter.cpp'; fi`
5768 5768
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-AsmWriterEmitter.Tpo $(DEPDIR)/tblgen-AsmWriterEmitter.Po
5769 5769
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5770 5770
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/AsmWriterEmitter.cpp' object='tblgen-AsmWriterEmitter.obj' libtool=no @AMDEPBACKSLASH@
5771 5771
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5772
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-AsmWriterEmitter.obj `if test -f 'llvm/utils/TableGen/AsmWriterEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/AsmWriterEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/AsmWriterEmitter.cpp'; fi`
5772
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-AsmWriterEmitter.obj `if test -f 'llvm/utils/TableGen/AsmWriterEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/AsmWriterEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/AsmWriterEmitter.cpp'; fi`
5773 5773
 
5774 5774
 tblgen-CallingConvEmitter.o: llvm/utils/TableGen/CallingConvEmitter.cpp
5775
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CallingConvEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-CallingConvEmitter.Tpo -c -o tblgen-CallingConvEmitter.o `test -f 'llvm/utils/TableGen/CallingConvEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CallingConvEmitter.cpp
5775
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CallingConvEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-CallingConvEmitter.Tpo -c -o tblgen-CallingConvEmitter.o `test -f 'llvm/utils/TableGen/CallingConvEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CallingConvEmitter.cpp
5776 5776
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CallingConvEmitter.Tpo $(DEPDIR)/tblgen-CallingConvEmitter.Po
5777 5777
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5778 5778
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CallingConvEmitter.cpp' object='tblgen-CallingConvEmitter.o' libtool=no @AMDEPBACKSLASH@
5779 5779
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5780
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CallingConvEmitter.o `test -f 'llvm/utils/TableGen/CallingConvEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CallingConvEmitter.cpp
5780
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CallingConvEmitter.o `test -f 'llvm/utils/TableGen/CallingConvEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CallingConvEmitter.cpp
5781 5781
 
5782 5782
 tblgen-CallingConvEmitter.obj: llvm/utils/TableGen/CallingConvEmitter.cpp
5783
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CallingConvEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-CallingConvEmitter.Tpo -c -o tblgen-CallingConvEmitter.obj `if test -f 'llvm/utils/TableGen/CallingConvEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CallingConvEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CallingConvEmitter.cpp'; fi`
5783
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CallingConvEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-CallingConvEmitter.Tpo -c -o tblgen-CallingConvEmitter.obj `if test -f 'llvm/utils/TableGen/CallingConvEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CallingConvEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CallingConvEmitter.cpp'; fi`
5784 5784
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CallingConvEmitter.Tpo $(DEPDIR)/tblgen-CallingConvEmitter.Po
5785 5785
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5786 5786
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CallingConvEmitter.cpp' object='tblgen-CallingConvEmitter.obj' libtool=no @AMDEPBACKSLASH@
5787 5787
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5788
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CallingConvEmitter.obj `if test -f 'llvm/utils/TableGen/CallingConvEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CallingConvEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CallingConvEmitter.cpp'; fi`
5788
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CallingConvEmitter.obj `if test -f 'llvm/utils/TableGen/CallingConvEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CallingConvEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CallingConvEmitter.cpp'; fi`
5789 5789
 
5790 5790
 tblgen-ClangDiagnosticsEmitter.o: llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp
5791
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-ClangDiagnosticsEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-ClangDiagnosticsEmitter.Tpo -c -o tblgen-ClangDiagnosticsEmitter.o `test -f 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp
5791
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-ClangDiagnosticsEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-ClangDiagnosticsEmitter.Tpo -c -o tblgen-ClangDiagnosticsEmitter.o `test -f 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp
5792 5792
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-ClangDiagnosticsEmitter.Tpo $(DEPDIR)/tblgen-ClangDiagnosticsEmitter.Po
5793 5793
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5794 5794
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp' object='tblgen-ClangDiagnosticsEmitter.o' libtool=no @AMDEPBACKSLASH@
5795 5795
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5796
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-ClangDiagnosticsEmitter.o `test -f 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp
5796
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-ClangDiagnosticsEmitter.o `test -f 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp
5797 5797
 
5798 5798
 tblgen-ClangDiagnosticsEmitter.obj: llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp
5799
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-ClangDiagnosticsEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-ClangDiagnosticsEmitter.Tpo -c -o tblgen-ClangDiagnosticsEmitter.obj `if test -f 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; fi`
5799
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-ClangDiagnosticsEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-ClangDiagnosticsEmitter.Tpo -c -o tblgen-ClangDiagnosticsEmitter.obj `if test -f 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; fi`
5800 5800
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-ClangDiagnosticsEmitter.Tpo $(DEPDIR)/tblgen-ClangDiagnosticsEmitter.Po
5801 5801
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5802 5802
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp' object='tblgen-ClangDiagnosticsEmitter.obj' libtool=no @AMDEPBACKSLASH@
5803 5803
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5804
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-ClangDiagnosticsEmitter.obj `if test -f 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; fi`
5804
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-ClangDiagnosticsEmitter.obj `if test -f 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp'; fi`
5805 5805
 
5806 5806
 tblgen-CodeEmitterGen.o: llvm/utils/TableGen/CodeEmitterGen.cpp
5807
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeEmitterGen.o -MD -MP -MF $(DEPDIR)/tblgen-CodeEmitterGen.Tpo -c -o tblgen-CodeEmitterGen.o `test -f 'llvm/utils/TableGen/CodeEmitterGen.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeEmitterGen.cpp
5807
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeEmitterGen.o -MD -MP -MF $(DEPDIR)/tblgen-CodeEmitterGen.Tpo -c -o tblgen-CodeEmitterGen.o `test -f 'llvm/utils/TableGen/CodeEmitterGen.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeEmitterGen.cpp
5808 5808
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CodeEmitterGen.Tpo $(DEPDIR)/tblgen-CodeEmitterGen.Po
5809 5809
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5810 5810
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CodeEmitterGen.cpp' object='tblgen-CodeEmitterGen.o' libtool=no @AMDEPBACKSLASH@
5811 5811
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5812
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeEmitterGen.o `test -f 'llvm/utils/TableGen/CodeEmitterGen.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeEmitterGen.cpp
5812
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeEmitterGen.o `test -f 'llvm/utils/TableGen/CodeEmitterGen.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeEmitterGen.cpp
5813 5813
 
5814 5814
 tblgen-CodeEmitterGen.obj: llvm/utils/TableGen/CodeEmitterGen.cpp
5815
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeEmitterGen.obj -MD -MP -MF $(DEPDIR)/tblgen-CodeEmitterGen.Tpo -c -o tblgen-CodeEmitterGen.obj `if test -f 'llvm/utils/TableGen/CodeEmitterGen.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeEmitterGen.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeEmitterGen.cpp'; fi`
5815
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeEmitterGen.obj -MD -MP -MF $(DEPDIR)/tblgen-CodeEmitterGen.Tpo -c -o tblgen-CodeEmitterGen.obj `if test -f 'llvm/utils/TableGen/CodeEmitterGen.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeEmitterGen.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeEmitterGen.cpp'; fi`
5816 5816
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CodeEmitterGen.Tpo $(DEPDIR)/tblgen-CodeEmitterGen.Po
5817 5817
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5818 5818
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CodeEmitterGen.cpp' object='tblgen-CodeEmitterGen.obj' libtool=no @AMDEPBACKSLASH@
5819 5819
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5820
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeEmitterGen.obj `if test -f 'llvm/utils/TableGen/CodeEmitterGen.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeEmitterGen.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeEmitterGen.cpp'; fi`
5820
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeEmitterGen.obj `if test -f 'llvm/utils/TableGen/CodeEmitterGen.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeEmitterGen.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeEmitterGen.cpp'; fi`
5821 5821
 
5822 5822
 tblgen-CodeGenDAGPatterns.o: llvm/utils/TableGen/CodeGenDAGPatterns.cpp
5823
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenDAGPatterns.o -MD -MP -MF $(DEPDIR)/tblgen-CodeGenDAGPatterns.Tpo -c -o tblgen-CodeGenDAGPatterns.o `test -f 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenDAGPatterns.cpp
5823
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenDAGPatterns.o -MD -MP -MF $(DEPDIR)/tblgen-CodeGenDAGPatterns.Tpo -c -o tblgen-CodeGenDAGPatterns.o `test -f 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenDAGPatterns.cpp
5824 5824
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CodeGenDAGPatterns.Tpo $(DEPDIR)/tblgen-CodeGenDAGPatterns.Po
5825 5825
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5826 5826
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CodeGenDAGPatterns.cpp' object='tblgen-CodeGenDAGPatterns.o' libtool=no @AMDEPBACKSLASH@
5827 5827
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5828
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenDAGPatterns.o `test -f 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenDAGPatterns.cpp
5828
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenDAGPatterns.o `test -f 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenDAGPatterns.cpp
5829 5829
 
5830 5830
 tblgen-CodeGenDAGPatterns.obj: llvm/utils/TableGen/CodeGenDAGPatterns.cpp
5831
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenDAGPatterns.obj -MD -MP -MF $(DEPDIR)/tblgen-CodeGenDAGPatterns.Tpo -c -o tblgen-CodeGenDAGPatterns.obj `if test -f 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; fi`
5831
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenDAGPatterns.obj -MD -MP -MF $(DEPDIR)/tblgen-CodeGenDAGPatterns.Tpo -c -o tblgen-CodeGenDAGPatterns.obj `if test -f 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; fi`
5832 5832
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CodeGenDAGPatterns.Tpo $(DEPDIR)/tblgen-CodeGenDAGPatterns.Po
5833 5833
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5834 5834
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CodeGenDAGPatterns.cpp' object='tblgen-CodeGenDAGPatterns.obj' libtool=no @AMDEPBACKSLASH@
5835 5835
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5836
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenDAGPatterns.obj `if test -f 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; fi`
5836
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenDAGPatterns.obj `if test -f 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenDAGPatterns.cpp'; fi`
5837 5837
 
5838 5838
 tblgen-CodeGenInstruction.o: llvm/utils/TableGen/CodeGenInstruction.cpp
5839
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenInstruction.o -MD -MP -MF $(DEPDIR)/tblgen-CodeGenInstruction.Tpo -c -o tblgen-CodeGenInstruction.o `test -f 'llvm/utils/TableGen/CodeGenInstruction.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenInstruction.cpp
5839
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenInstruction.o -MD -MP -MF $(DEPDIR)/tblgen-CodeGenInstruction.Tpo -c -o tblgen-CodeGenInstruction.o `test -f 'llvm/utils/TableGen/CodeGenInstruction.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenInstruction.cpp
5840 5840
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CodeGenInstruction.Tpo $(DEPDIR)/tblgen-CodeGenInstruction.Po
5841 5841
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5842 5842
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CodeGenInstruction.cpp' object='tblgen-CodeGenInstruction.o' libtool=no @AMDEPBACKSLASH@
5843 5843
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5844
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenInstruction.o `test -f 'llvm/utils/TableGen/CodeGenInstruction.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenInstruction.cpp
5844
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenInstruction.o `test -f 'llvm/utils/TableGen/CodeGenInstruction.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenInstruction.cpp
5845 5845
 
5846 5846
 tblgen-CodeGenInstruction.obj: llvm/utils/TableGen/CodeGenInstruction.cpp
5847
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenInstruction.obj -MD -MP -MF $(DEPDIR)/tblgen-CodeGenInstruction.Tpo -c -o tblgen-CodeGenInstruction.obj `if test -f 'llvm/utils/TableGen/CodeGenInstruction.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenInstruction.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenInstruction.cpp'; fi`
5847
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenInstruction.obj -MD -MP -MF $(DEPDIR)/tblgen-CodeGenInstruction.Tpo -c -o tblgen-CodeGenInstruction.obj `if test -f 'llvm/utils/TableGen/CodeGenInstruction.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenInstruction.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenInstruction.cpp'; fi`
5848 5848
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CodeGenInstruction.Tpo $(DEPDIR)/tblgen-CodeGenInstruction.Po
5849 5849
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5850 5850
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CodeGenInstruction.cpp' object='tblgen-CodeGenInstruction.obj' libtool=no @AMDEPBACKSLASH@
5851 5851
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5852
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenInstruction.obj `if test -f 'llvm/utils/TableGen/CodeGenInstruction.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenInstruction.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenInstruction.cpp'; fi`
5852
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenInstruction.obj `if test -f 'llvm/utils/TableGen/CodeGenInstruction.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenInstruction.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenInstruction.cpp'; fi`
5853 5853
 
5854 5854
 tblgen-CodeGenTarget.o: llvm/utils/TableGen/CodeGenTarget.cpp
5855
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenTarget.o -MD -MP -MF $(DEPDIR)/tblgen-CodeGenTarget.Tpo -c -o tblgen-CodeGenTarget.o `test -f 'llvm/utils/TableGen/CodeGenTarget.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenTarget.cpp
5855
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenTarget.o -MD -MP -MF $(DEPDIR)/tblgen-CodeGenTarget.Tpo -c -o tblgen-CodeGenTarget.o `test -f 'llvm/utils/TableGen/CodeGenTarget.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenTarget.cpp
5856 5856
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CodeGenTarget.Tpo $(DEPDIR)/tblgen-CodeGenTarget.Po
5857 5857
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5858 5858
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CodeGenTarget.cpp' object='tblgen-CodeGenTarget.o' libtool=no @AMDEPBACKSLASH@
5859 5859
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5860
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenTarget.o `test -f 'llvm/utils/TableGen/CodeGenTarget.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenTarget.cpp
5860
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenTarget.o `test -f 'llvm/utils/TableGen/CodeGenTarget.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/CodeGenTarget.cpp
5861 5861
 
5862 5862
 tblgen-CodeGenTarget.obj: llvm/utils/TableGen/CodeGenTarget.cpp
5863
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenTarget.obj -MD -MP -MF $(DEPDIR)/tblgen-CodeGenTarget.Tpo -c -o tblgen-CodeGenTarget.obj `if test -f 'llvm/utils/TableGen/CodeGenTarget.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenTarget.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenTarget.cpp'; fi`
5863
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-CodeGenTarget.obj -MD -MP -MF $(DEPDIR)/tblgen-CodeGenTarget.Tpo -c -o tblgen-CodeGenTarget.obj `if test -f 'llvm/utils/TableGen/CodeGenTarget.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenTarget.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenTarget.cpp'; fi`
5864 5864
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-CodeGenTarget.Tpo $(DEPDIR)/tblgen-CodeGenTarget.Po
5865 5865
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5866 5866
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/CodeGenTarget.cpp' object='tblgen-CodeGenTarget.obj' libtool=no @AMDEPBACKSLASH@
5867 5867
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5868
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenTarget.obj `if test -f 'llvm/utils/TableGen/CodeGenTarget.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenTarget.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenTarget.cpp'; fi`
5868
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-CodeGenTarget.obj `if test -f 'llvm/utils/TableGen/CodeGenTarget.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/CodeGenTarget.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/CodeGenTarget.cpp'; fi`
5869 5869
 
5870 5870
 tblgen-DisassemblerEmitter.o: llvm/utils/TableGen/DisassemblerEmitter.cpp
5871
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-DisassemblerEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-DisassemblerEmitter.Tpo -c -o tblgen-DisassemblerEmitter.o `test -f 'llvm/utils/TableGen/DisassemblerEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/DisassemblerEmitter.cpp
5871
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-DisassemblerEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-DisassemblerEmitter.Tpo -c -o tblgen-DisassemblerEmitter.o `test -f 'llvm/utils/TableGen/DisassemblerEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/DisassemblerEmitter.cpp
5872 5872
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-DisassemblerEmitter.Tpo $(DEPDIR)/tblgen-DisassemblerEmitter.Po
5873 5873
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5874 5874
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/DisassemblerEmitter.cpp' object='tblgen-DisassemblerEmitter.o' libtool=no @AMDEPBACKSLASH@
5875 5875
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5876
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-DisassemblerEmitter.o `test -f 'llvm/utils/TableGen/DisassemblerEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/DisassemblerEmitter.cpp
5876
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-DisassemblerEmitter.o `test -f 'llvm/utils/TableGen/DisassemblerEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/DisassemblerEmitter.cpp
5877 5877
 
5878 5878
 tblgen-DisassemblerEmitter.obj: llvm/utils/TableGen/DisassemblerEmitter.cpp
5879
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-DisassemblerEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-DisassemblerEmitter.Tpo -c -o tblgen-DisassemblerEmitter.obj `if test -f 'llvm/utils/TableGen/DisassemblerEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/DisassemblerEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/DisassemblerEmitter.cpp'; fi`
5879
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-DisassemblerEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-DisassemblerEmitter.Tpo -c -o tblgen-DisassemblerEmitter.obj `if test -f 'llvm/utils/TableGen/DisassemblerEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/DisassemblerEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/DisassemblerEmitter.cpp'; fi`
5880 5880
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-DisassemblerEmitter.Tpo $(DEPDIR)/tblgen-DisassemblerEmitter.Po
5881 5881
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5882 5882
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/DisassemblerEmitter.cpp' object='tblgen-DisassemblerEmitter.obj' libtool=no @AMDEPBACKSLASH@
5883 5883
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5884
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-DisassemblerEmitter.obj `if test -f 'llvm/utils/TableGen/DisassemblerEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/DisassemblerEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/DisassemblerEmitter.cpp'; fi`
5884
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-DisassemblerEmitter.obj `if test -f 'llvm/utils/TableGen/DisassemblerEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/DisassemblerEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/DisassemblerEmitter.cpp'; fi`
5885 5885
 
5886 5886
 tblgen-DAGISelEmitter.o: llvm/utils/TableGen/DAGISelEmitter.cpp
5887
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-DAGISelEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-DAGISelEmitter.Tpo -c -o tblgen-DAGISelEmitter.o `test -f 'llvm/utils/TableGen/DAGISelEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/DAGISelEmitter.cpp
5887
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-DAGISelEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-DAGISelEmitter.Tpo -c -o tblgen-DAGISelEmitter.o `test -f 'llvm/utils/TableGen/DAGISelEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/DAGISelEmitter.cpp
5888 5888
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-DAGISelEmitter.Tpo $(DEPDIR)/tblgen-DAGISelEmitter.Po
5889 5889
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5890 5890
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/DAGISelEmitter.cpp' object='tblgen-DAGISelEmitter.o' libtool=no @AMDEPBACKSLASH@
5891 5891
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5892
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-DAGISelEmitter.o `test -f 'llvm/utils/TableGen/DAGISelEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/DAGISelEmitter.cpp
5892
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-DAGISelEmitter.o `test -f 'llvm/utils/TableGen/DAGISelEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/DAGISelEmitter.cpp
5893 5893
 
5894 5894
 tblgen-DAGISelEmitter.obj: llvm/utils/TableGen/DAGISelEmitter.cpp
5895
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-DAGISelEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-DAGISelEmitter.Tpo -c -o tblgen-DAGISelEmitter.obj `if test -f 'llvm/utils/TableGen/DAGISelEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/DAGISelEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/DAGISelEmitter.cpp'; fi`
5895
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-DAGISelEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-DAGISelEmitter.Tpo -c -o tblgen-DAGISelEmitter.obj `if test -f 'llvm/utils/TableGen/DAGISelEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/DAGISelEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/DAGISelEmitter.cpp'; fi`
5896 5896
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-DAGISelEmitter.Tpo $(DEPDIR)/tblgen-DAGISelEmitter.Po
5897 5897
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5898 5898
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/DAGISelEmitter.cpp' object='tblgen-DAGISelEmitter.obj' libtool=no @AMDEPBACKSLASH@
5899 5899
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5900
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-DAGISelEmitter.obj `if test -f 'llvm/utils/TableGen/DAGISelEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/DAGISelEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/DAGISelEmitter.cpp'; fi`
5900
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-DAGISelEmitter.obj `if test -f 'llvm/utils/TableGen/DAGISelEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/DAGISelEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/DAGISelEmitter.cpp'; fi`
5901 5901
 
5902 5902
 tblgen-FastISelEmitter.o: llvm/utils/TableGen/FastISelEmitter.cpp
5903
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-FastISelEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-FastISelEmitter.Tpo -c -o tblgen-FastISelEmitter.o `test -f 'llvm/utils/TableGen/FastISelEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/FastISelEmitter.cpp
5903
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-FastISelEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-FastISelEmitter.Tpo -c -o tblgen-FastISelEmitter.o `test -f 'llvm/utils/TableGen/FastISelEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/FastISelEmitter.cpp
5904 5904
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-FastISelEmitter.Tpo $(DEPDIR)/tblgen-FastISelEmitter.Po
5905 5905
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5906 5906
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/FastISelEmitter.cpp' object='tblgen-FastISelEmitter.o' libtool=no @AMDEPBACKSLASH@
5907 5907
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5908
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-FastISelEmitter.o `test -f 'llvm/utils/TableGen/FastISelEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/FastISelEmitter.cpp
5908
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-FastISelEmitter.o `test -f 'llvm/utils/TableGen/FastISelEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/FastISelEmitter.cpp
5909 5909
 
5910 5910
 tblgen-FastISelEmitter.obj: llvm/utils/TableGen/FastISelEmitter.cpp
5911
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-FastISelEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-FastISelEmitter.Tpo -c -o tblgen-FastISelEmitter.obj `if test -f 'llvm/utils/TableGen/FastISelEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/FastISelEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/FastISelEmitter.cpp'; fi`
5911
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-FastISelEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-FastISelEmitter.Tpo -c -o tblgen-FastISelEmitter.obj `if test -f 'llvm/utils/TableGen/FastISelEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/FastISelEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/FastISelEmitter.cpp'; fi`
5912 5912
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-FastISelEmitter.Tpo $(DEPDIR)/tblgen-FastISelEmitter.Po
5913 5913
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5914 5914
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/FastISelEmitter.cpp' object='tblgen-FastISelEmitter.obj' libtool=no @AMDEPBACKSLASH@
5915 5915
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5916
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-FastISelEmitter.obj `if test -f 'llvm/utils/TableGen/FastISelEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/FastISelEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/FastISelEmitter.cpp'; fi`
5916
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-FastISelEmitter.obj `if test -f 'llvm/utils/TableGen/FastISelEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/FastISelEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/FastISelEmitter.cpp'; fi`
5917 5917
 
5918 5918
 tblgen-InstrEnumEmitter.o: llvm/utils/TableGen/InstrEnumEmitter.cpp
5919
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-InstrEnumEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-InstrEnumEmitter.Tpo -c -o tblgen-InstrEnumEmitter.o `test -f 'llvm/utils/TableGen/InstrEnumEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/InstrEnumEmitter.cpp
5919
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-InstrEnumEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-InstrEnumEmitter.Tpo -c -o tblgen-InstrEnumEmitter.o `test -f 'llvm/utils/TableGen/InstrEnumEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/InstrEnumEmitter.cpp
5920 5920
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-InstrEnumEmitter.Tpo $(DEPDIR)/tblgen-InstrEnumEmitter.Po
5921 5921
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5922 5922
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/InstrEnumEmitter.cpp' object='tblgen-InstrEnumEmitter.o' libtool=no @AMDEPBACKSLASH@
5923 5923
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5924
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-InstrEnumEmitter.o `test -f 'llvm/utils/TableGen/InstrEnumEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/InstrEnumEmitter.cpp
5924
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-InstrEnumEmitter.o `test -f 'llvm/utils/TableGen/InstrEnumEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/InstrEnumEmitter.cpp
5925 5925
 
5926 5926
 tblgen-InstrEnumEmitter.obj: llvm/utils/TableGen/InstrEnumEmitter.cpp
5927
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-InstrEnumEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-InstrEnumEmitter.Tpo -c -o tblgen-InstrEnumEmitter.obj `if test -f 'llvm/utils/TableGen/InstrEnumEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/InstrEnumEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/InstrEnumEmitter.cpp'; fi`
5927
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-InstrEnumEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-InstrEnumEmitter.Tpo -c -o tblgen-InstrEnumEmitter.obj `if test -f 'llvm/utils/TableGen/InstrEnumEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/InstrEnumEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/InstrEnumEmitter.cpp'; fi`
5928 5928
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-InstrEnumEmitter.Tpo $(DEPDIR)/tblgen-InstrEnumEmitter.Po
5929 5929
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5930 5930
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/InstrEnumEmitter.cpp' object='tblgen-InstrEnumEmitter.obj' libtool=no @AMDEPBACKSLASH@
5931 5931
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5932
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-InstrEnumEmitter.obj `if test -f 'llvm/utils/TableGen/InstrEnumEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/InstrEnumEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/InstrEnumEmitter.cpp'; fi`
5932
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-InstrEnumEmitter.obj `if test -f 'llvm/utils/TableGen/InstrEnumEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/InstrEnumEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/InstrEnumEmitter.cpp'; fi`
5933 5933
 
5934 5934
 tblgen-InstrInfoEmitter.o: llvm/utils/TableGen/InstrInfoEmitter.cpp
5935
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-InstrInfoEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-InstrInfoEmitter.Tpo -c -o tblgen-InstrInfoEmitter.o `test -f 'llvm/utils/TableGen/InstrInfoEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/InstrInfoEmitter.cpp
5935
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-InstrInfoEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-InstrInfoEmitter.Tpo -c -o tblgen-InstrInfoEmitter.o `test -f 'llvm/utils/TableGen/InstrInfoEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/InstrInfoEmitter.cpp
5936 5936
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-InstrInfoEmitter.Tpo $(DEPDIR)/tblgen-InstrInfoEmitter.Po
5937 5937
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5938 5938
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/InstrInfoEmitter.cpp' object='tblgen-InstrInfoEmitter.o' libtool=no @AMDEPBACKSLASH@
5939 5939
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5940
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-InstrInfoEmitter.o `test -f 'llvm/utils/TableGen/InstrInfoEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/InstrInfoEmitter.cpp
5940
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-InstrInfoEmitter.o `test -f 'llvm/utils/TableGen/InstrInfoEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/InstrInfoEmitter.cpp
5941 5941
 
5942 5942
 tblgen-InstrInfoEmitter.obj: llvm/utils/TableGen/InstrInfoEmitter.cpp
5943
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-InstrInfoEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-InstrInfoEmitter.Tpo -c -o tblgen-InstrInfoEmitter.obj `if test -f 'llvm/utils/TableGen/InstrInfoEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/InstrInfoEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/InstrInfoEmitter.cpp'; fi`
5943
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-InstrInfoEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-InstrInfoEmitter.Tpo -c -o tblgen-InstrInfoEmitter.obj `if test -f 'llvm/utils/TableGen/InstrInfoEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/InstrInfoEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/InstrInfoEmitter.cpp'; fi`
5944 5944
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-InstrInfoEmitter.Tpo $(DEPDIR)/tblgen-InstrInfoEmitter.Po
5945 5945
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5946 5946
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/InstrInfoEmitter.cpp' object='tblgen-InstrInfoEmitter.obj' libtool=no @AMDEPBACKSLASH@
5947 5947
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5948
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-InstrInfoEmitter.obj `if test -f 'llvm/utils/TableGen/InstrInfoEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/InstrInfoEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/InstrInfoEmitter.cpp'; fi`
5948
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-InstrInfoEmitter.obj `if test -f 'llvm/utils/TableGen/InstrInfoEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/InstrInfoEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/InstrInfoEmitter.cpp'; fi`
5949 5949
 
5950 5950
 tblgen-IntrinsicEmitter.o: llvm/utils/TableGen/IntrinsicEmitter.cpp
5951
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-IntrinsicEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-IntrinsicEmitter.Tpo -c -o tblgen-IntrinsicEmitter.o `test -f 'llvm/utils/TableGen/IntrinsicEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/IntrinsicEmitter.cpp
5951
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-IntrinsicEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-IntrinsicEmitter.Tpo -c -o tblgen-IntrinsicEmitter.o `test -f 'llvm/utils/TableGen/IntrinsicEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/IntrinsicEmitter.cpp
5952 5952
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-IntrinsicEmitter.Tpo $(DEPDIR)/tblgen-IntrinsicEmitter.Po
5953 5953
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5954 5954
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/IntrinsicEmitter.cpp' object='tblgen-IntrinsicEmitter.o' libtool=no @AMDEPBACKSLASH@
5955 5955
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5956
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-IntrinsicEmitter.o `test -f 'llvm/utils/TableGen/IntrinsicEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/IntrinsicEmitter.cpp
5956
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-IntrinsicEmitter.o `test -f 'llvm/utils/TableGen/IntrinsicEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/IntrinsicEmitter.cpp
5957 5957
 
5958 5958
 tblgen-IntrinsicEmitter.obj: llvm/utils/TableGen/IntrinsicEmitter.cpp
5959
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-IntrinsicEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-IntrinsicEmitter.Tpo -c -o tblgen-IntrinsicEmitter.obj `if test -f 'llvm/utils/TableGen/IntrinsicEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/IntrinsicEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/IntrinsicEmitter.cpp'; fi`
5959
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-IntrinsicEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-IntrinsicEmitter.Tpo -c -o tblgen-IntrinsicEmitter.obj `if test -f 'llvm/utils/TableGen/IntrinsicEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/IntrinsicEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/IntrinsicEmitter.cpp'; fi`
5960 5960
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-IntrinsicEmitter.Tpo $(DEPDIR)/tblgen-IntrinsicEmitter.Po
5961 5961
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5962 5962
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/IntrinsicEmitter.cpp' object='tblgen-IntrinsicEmitter.obj' libtool=no @AMDEPBACKSLASH@
5963 5963
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5964
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-IntrinsicEmitter.obj `if test -f 'llvm/utils/TableGen/IntrinsicEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/IntrinsicEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/IntrinsicEmitter.cpp'; fi`
5964
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-IntrinsicEmitter.obj `if test -f 'llvm/utils/TableGen/IntrinsicEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/IntrinsicEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/IntrinsicEmitter.cpp'; fi`
5965 5965
 
5966 5966
 tblgen-LLVMCConfigurationEmitter.o: llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp
5967
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-LLVMCConfigurationEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-LLVMCConfigurationEmitter.Tpo -c -o tblgen-LLVMCConfigurationEmitter.o `test -f 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp
5967
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-LLVMCConfigurationEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-LLVMCConfigurationEmitter.Tpo -c -o tblgen-LLVMCConfigurationEmitter.o `test -f 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp
5968 5968
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-LLVMCConfigurationEmitter.Tpo $(DEPDIR)/tblgen-LLVMCConfigurationEmitter.Po
5969 5969
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5970 5970
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp' object='tblgen-LLVMCConfigurationEmitter.o' libtool=no @AMDEPBACKSLASH@
5971 5971
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5972
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-LLVMCConfigurationEmitter.o `test -f 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp
5972
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-LLVMCConfigurationEmitter.o `test -f 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp
5973 5973
 
5974 5974
 tblgen-LLVMCConfigurationEmitter.obj: llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp
5975
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-LLVMCConfigurationEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-LLVMCConfigurationEmitter.Tpo -c -o tblgen-LLVMCConfigurationEmitter.obj `if test -f 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; fi`
5975
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-LLVMCConfigurationEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-LLVMCConfigurationEmitter.Tpo -c -o tblgen-LLVMCConfigurationEmitter.obj `if test -f 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; fi`
5976 5976
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-LLVMCConfigurationEmitter.Tpo $(DEPDIR)/tblgen-LLVMCConfigurationEmitter.Po
5977 5977
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5978 5978
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp' object='tblgen-LLVMCConfigurationEmitter.obj' libtool=no @AMDEPBACKSLASH@
5979 5979
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5980
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-LLVMCConfigurationEmitter.obj `if test -f 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; fi`
5980
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-LLVMCConfigurationEmitter.obj `if test -f 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp'; fi`
5981 5981
 
5982 5982
 tblgen-OptParserEmitter.o: llvm/utils/TableGen/OptParserEmitter.cpp
5983
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-OptParserEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-OptParserEmitter.Tpo -c -o tblgen-OptParserEmitter.o `test -f 'llvm/utils/TableGen/OptParserEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/OptParserEmitter.cpp
5983
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-OptParserEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-OptParserEmitter.Tpo -c -o tblgen-OptParserEmitter.o `test -f 'llvm/utils/TableGen/OptParserEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/OptParserEmitter.cpp
5984 5984
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-OptParserEmitter.Tpo $(DEPDIR)/tblgen-OptParserEmitter.Po
5985 5985
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5986 5986
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/OptParserEmitter.cpp' object='tblgen-OptParserEmitter.o' libtool=no @AMDEPBACKSLASH@
5987 5987
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5988
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-OptParserEmitter.o `test -f 'llvm/utils/TableGen/OptParserEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/OptParserEmitter.cpp
5988
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-OptParserEmitter.o `test -f 'llvm/utils/TableGen/OptParserEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/OptParserEmitter.cpp
5989 5989
 
5990 5990
 tblgen-OptParserEmitter.obj: llvm/utils/TableGen/OptParserEmitter.cpp
5991
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-OptParserEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-OptParserEmitter.Tpo -c -o tblgen-OptParserEmitter.obj `if test -f 'llvm/utils/TableGen/OptParserEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/OptParserEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/OptParserEmitter.cpp'; fi`
5991
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-OptParserEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-OptParserEmitter.Tpo -c -o tblgen-OptParserEmitter.obj `if test -f 'llvm/utils/TableGen/OptParserEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/OptParserEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/OptParserEmitter.cpp'; fi`
5992 5992
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-OptParserEmitter.Tpo $(DEPDIR)/tblgen-OptParserEmitter.Po
5993 5993
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
5994 5994
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/OptParserEmitter.cpp' object='tblgen-OptParserEmitter.obj' libtool=no @AMDEPBACKSLASH@
5995 5995
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
5996
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-OptParserEmitter.obj `if test -f 'llvm/utils/TableGen/OptParserEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/OptParserEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/OptParserEmitter.cpp'; fi`
5996
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-OptParserEmitter.obj `if test -f 'llvm/utils/TableGen/OptParserEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/OptParserEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/OptParserEmitter.cpp'; fi`
5997 5997
 
5998 5998
 tblgen-Record.o: llvm/utils/TableGen/Record.cpp
5999
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-Record.o -MD -MP -MF $(DEPDIR)/tblgen-Record.Tpo -c -o tblgen-Record.o `test -f 'llvm/utils/TableGen/Record.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/Record.cpp
5999
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-Record.o -MD -MP -MF $(DEPDIR)/tblgen-Record.Tpo -c -o tblgen-Record.o `test -f 'llvm/utils/TableGen/Record.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/Record.cpp
6000 6000
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-Record.Tpo $(DEPDIR)/tblgen-Record.Po
6001 6001
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6002 6002
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/Record.cpp' object='tblgen-Record.o' libtool=no @AMDEPBACKSLASH@
6003 6003
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6004
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-Record.o `test -f 'llvm/utils/TableGen/Record.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/Record.cpp
6004
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-Record.o `test -f 'llvm/utils/TableGen/Record.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/Record.cpp
6005 6005
 
6006 6006
 tblgen-Record.obj: llvm/utils/TableGen/Record.cpp
6007
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-Record.obj -MD -MP -MF $(DEPDIR)/tblgen-Record.Tpo -c -o tblgen-Record.obj `if test -f 'llvm/utils/TableGen/Record.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/Record.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/Record.cpp'; fi`
6007
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-Record.obj -MD -MP -MF $(DEPDIR)/tblgen-Record.Tpo -c -o tblgen-Record.obj `if test -f 'llvm/utils/TableGen/Record.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/Record.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/Record.cpp'; fi`
6008 6008
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-Record.Tpo $(DEPDIR)/tblgen-Record.Po
6009 6009
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6010 6010
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/Record.cpp' object='tblgen-Record.obj' libtool=no @AMDEPBACKSLASH@
6011 6011
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6012
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-Record.obj `if test -f 'llvm/utils/TableGen/Record.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/Record.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/Record.cpp'; fi`
6012
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-Record.obj `if test -f 'llvm/utils/TableGen/Record.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/Record.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/Record.cpp'; fi`
6013 6013
 
6014 6014
 tblgen-RegisterInfoEmitter.o: llvm/utils/TableGen/RegisterInfoEmitter.cpp
6015
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-RegisterInfoEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-RegisterInfoEmitter.Tpo -c -o tblgen-RegisterInfoEmitter.o `test -f 'llvm/utils/TableGen/RegisterInfoEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/RegisterInfoEmitter.cpp
6015
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-RegisterInfoEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-RegisterInfoEmitter.Tpo -c -o tblgen-RegisterInfoEmitter.o `test -f 'llvm/utils/TableGen/RegisterInfoEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/RegisterInfoEmitter.cpp
6016 6016
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-RegisterInfoEmitter.Tpo $(DEPDIR)/tblgen-RegisterInfoEmitter.Po
6017 6017
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6018 6018
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/RegisterInfoEmitter.cpp' object='tblgen-RegisterInfoEmitter.o' libtool=no @AMDEPBACKSLASH@
6019 6019
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6020
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-RegisterInfoEmitter.o `test -f 'llvm/utils/TableGen/RegisterInfoEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/RegisterInfoEmitter.cpp
6020
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-RegisterInfoEmitter.o `test -f 'llvm/utils/TableGen/RegisterInfoEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/RegisterInfoEmitter.cpp
6021 6021
 
6022 6022
 tblgen-RegisterInfoEmitter.obj: llvm/utils/TableGen/RegisterInfoEmitter.cpp
6023
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-RegisterInfoEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-RegisterInfoEmitter.Tpo -c -o tblgen-RegisterInfoEmitter.obj `if test -f 'llvm/utils/TableGen/RegisterInfoEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/RegisterInfoEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/RegisterInfoEmitter.cpp'; fi`
6023
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-RegisterInfoEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-RegisterInfoEmitter.Tpo -c -o tblgen-RegisterInfoEmitter.obj `if test -f 'llvm/utils/TableGen/RegisterInfoEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/RegisterInfoEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/RegisterInfoEmitter.cpp'; fi`
6024 6024
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-RegisterInfoEmitter.Tpo $(DEPDIR)/tblgen-RegisterInfoEmitter.Po
6025 6025
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6026 6026
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/RegisterInfoEmitter.cpp' object='tblgen-RegisterInfoEmitter.obj' libtool=no @AMDEPBACKSLASH@
6027 6027
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6028
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-RegisterInfoEmitter.obj `if test -f 'llvm/utils/TableGen/RegisterInfoEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/RegisterInfoEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/RegisterInfoEmitter.cpp'; fi`
6028
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-RegisterInfoEmitter.obj `if test -f 'llvm/utils/TableGen/RegisterInfoEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/RegisterInfoEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/RegisterInfoEmitter.cpp'; fi`
6029 6029
 
6030 6030
 tblgen-SubtargetEmitter.o: llvm/utils/TableGen/SubtargetEmitter.cpp
6031
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-SubtargetEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-SubtargetEmitter.Tpo -c -o tblgen-SubtargetEmitter.o `test -f 'llvm/utils/TableGen/SubtargetEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/SubtargetEmitter.cpp
6031
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-SubtargetEmitter.o -MD -MP -MF $(DEPDIR)/tblgen-SubtargetEmitter.Tpo -c -o tblgen-SubtargetEmitter.o `test -f 'llvm/utils/TableGen/SubtargetEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/SubtargetEmitter.cpp
6032 6032
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-SubtargetEmitter.Tpo $(DEPDIR)/tblgen-SubtargetEmitter.Po
6033 6033
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6034 6034
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/SubtargetEmitter.cpp' object='tblgen-SubtargetEmitter.o' libtool=no @AMDEPBACKSLASH@
6035 6035
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6036
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-SubtargetEmitter.o `test -f 'llvm/utils/TableGen/SubtargetEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/SubtargetEmitter.cpp
6036
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-SubtargetEmitter.o `test -f 'llvm/utils/TableGen/SubtargetEmitter.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/SubtargetEmitter.cpp
6037 6037
 
6038 6038
 tblgen-SubtargetEmitter.obj: llvm/utils/TableGen/SubtargetEmitter.cpp
6039
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-SubtargetEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-SubtargetEmitter.Tpo -c -o tblgen-SubtargetEmitter.obj `if test -f 'llvm/utils/TableGen/SubtargetEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/SubtargetEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/SubtargetEmitter.cpp'; fi`
6039
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-SubtargetEmitter.obj -MD -MP -MF $(DEPDIR)/tblgen-SubtargetEmitter.Tpo -c -o tblgen-SubtargetEmitter.obj `if test -f 'llvm/utils/TableGen/SubtargetEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/SubtargetEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/SubtargetEmitter.cpp'; fi`
6040 6040
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-SubtargetEmitter.Tpo $(DEPDIR)/tblgen-SubtargetEmitter.Po
6041 6041
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6042 6042
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/SubtargetEmitter.cpp' object='tblgen-SubtargetEmitter.obj' libtool=no @AMDEPBACKSLASH@
6043 6043
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6044
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-SubtargetEmitter.obj `if test -f 'llvm/utils/TableGen/SubtargetEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/SubtargetEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/SubtargetEmitter.cpp'; fi`
6044
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-SubtargetEmitter.obj `if test -f 'llvm/utils/TableGen/SubtargetEmitter.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/SubtargetEmitter.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/SubtargetEmitter.cpp'; fi`
6045 6045
 
6046 6046
 tblgen-TGLexer.o: llvm/utils/TableGen/TGLexer.cpp
6047
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGLexer.o -MD -MP -MF $(DEPDIR)/tblgen-TGLexer.Tpo -c -o tblgen-TGLexer.o `test -f 'llvm/utils/TableGen/TGLexer.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGLexer.cpp
6047
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGLexer.o -MD -MP -MF $(DEPDIR)/tblgen-TGLexer.Tpo -c -o tblgen-TGLexer.o `test -f 'llvm/utils/TableGen/TGLexer.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGLexer.cpp
6048 6048
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TGLexer.Tpo $(DEPDIR)/tblgen-TGLexer.Po
6049 6049
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6050 6050
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TGLexer.cpp' object='tblgen-TGLexer.o' libtool=no @AMDEPBACKSLASH@
6051 6051
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6052
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGLexer.o `test -f 'llvm/utils/TableGen/TGLexer.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGLexer.cpp
6052
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGLexer.o `test -f 'llvm/utils/TableGen/TGLexer.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGLexer.cpp
6053 6053
 
6054 6054
 tblgen-TGLexer.obj: llvm/utils/TableGen/TGLexer.cpp
6055
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGLexer.obj -MD -MP -MF $(DEPDIR)/tblgen-TGLexer.Tpo -c -o tblgen-TGLexer.obj `if test -f 'llvm/utils/TableGen/TGLexer.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGLexer.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGLexer.cpp'; fi`
6055
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGLexer.obj -MD -MP -MF $(DEPDIR)/tblgen-TGLexer.Tpo -c -o tblgen-TGLexer.obj `if test -f 'llvm/utils/TableGen/TGLexer.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGLexer.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGLexer.cpp'; fi`
6056 6056
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TGLexer.Tpo $(DEPDIR)/tblgen-TGLexer.Po
6057 6057
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6058 6058
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TGLexer.cpp' object='tblgen-TGLexer.obj' libtool=no @AMDEPBACKSLASH@
6059 6059
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6060
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGLexer.obj `if test -f 'llvm/utils/TableGen/TGLexer.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGLexer.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGLexer.cpp'; fi`
6060
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGLexer.obj `if test -f 'llvm/utils/TableGen/TGLexer.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGLexer.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGLexer.cpp'; fi`
6061 6061
 
6062 6062
 tblgen-TGParser.o: llvm/utils/TableGen/TGParser.cpp
6063
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGParser.o -MD -MP -MF $(DEPDIR)/tblgen-TGParser.Tpo -c -o tblgen-TGParser.o `test -f 'llvm/utils/TableGen/TGParser.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGParser.cpp
6063
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGParser.o -MD -MP -MF $(DEPDIR)/tblgen-TGParser.Tpo -c -o tblgen-TGParser.o `test -f 'llvm/utils/TableGen/TGParser.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGParser.cpp
6064 6064
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TGParser.Tpo $(DEPDIR)/tblgen-TGParser.Po
6065 6065
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6066 6066
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TGParser.cpp' object='tblgen-TGParser.o' libtool=no @AMDEPBACKSLASH@
6067 6067
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6068
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGParser.o `test -f 'llvm/utils/TableGen/TGParser.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGParser.cpp
6068
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGParser.o `test -f 'llvm/utils/TableGen/TGParser.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGParser.cpp
6069 6069
 
6070 6070
 tblgen-TGParser.obj: llvm/utils/TableGen/TGParser.cpp
6071
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGParser.obj -MD -MP -MF $(DEPDIR)/tblgen-TGParser.Tpo -c -o tblgen-TGParser.obj `if test -f 'llvm/utils/TableGen/TGParser.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGParser.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGParser.cpp'; fi`
6071
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGParser.obj -MD -MP -MF $(DEPDIR)/tblgen-TGParser.Tpo -c -o tblgen-TGParser.obj `if test -f 'llvm/utils/TableGen/TGParser.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGParser.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGParser.cpp'; fi`
6072 6072
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TGParser.Tpo $(DEPDIR)/tblgen-TGParser.Po
6073 6073
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6074 6074
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TGParser.cpp' object='tblgen-TGParser.obj' libtool=no @AMDEPBACKSLASH@
6075 6075
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6076
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGParser.obj `if test -f 'llvm/utils/TableGen/TGParser.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGParser.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGParser.cpp'; fi`
6076
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGParser.obj `if test -f 'llvm/utils/TableGen/TGParser.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGParser.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGParser.cpp'; fi`
6077 6077
 
6078 6078
 tblgen-TGValueTypes.o: llvm/utils/TableGen/TGValueTypes.cpp
6079
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGValueTypes.o -MD -MP -MF $(DEPDIR)/tblgen-TGValueTypes.Tpo -c -o tblgen-TGValueTypes.o `test -f 'llvm/utils/TableGen/TGValueTypes.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGValueTypes.cpp
6079
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGValueTypes.o -MD -MP -MF $(DEPDIR)/tblgen-TGValueTypes.Tpo -c -o tblgen-TGValueTypes.o `test -f 'llvm/utils/TableGen/TGValueTypes.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGValueTypes.cpp
6080 6080
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TGValueTypes.Tpo $(DEPDIR)/tblgen-TGValueTypes.Po
6081 6081
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6082 6082
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TGValueTypes.cpp' object='tblgen-TGValueTypes.o' libtool=no @AMDEPBACKSLASH@
6083 6083
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6084
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGValueTypes.o `test -f 'llvm/utils/TableGen/TGValueTypes.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGValueTypes.cpp
6084
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGValueTypes.o `test -f 'llvm/utils/TableGen/TGValueTypes.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TGValueTypes.cpp
6085 6085
 
6086 6086
 tblgen-TGValueTypes.obj: llvm/utils/TableGen/TGValueTypes.cpp
6087
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGValueTypes.obj -MD -MP -MF $(DEPDIR)/tblgen-TGValueTypes.Tpo -c -o tblgen-TGValueTypes.obj `if test -f 'llvm/utils/TableGen/TGValueTypes.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGValueTypes.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGValueTypes.cpp'; fi`
6087
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TGValueTypes.obj -MD -MP -MF $(DEPDIR)/tblgen-TGValueTypes.Tpo -c -o tblgen-TGValueTypes.obj `if test -f 'llvm/utils/TableGen/TGValueTypes.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGValueTypes.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGValueTypes.cpp'; fi`
6088 6088
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TGValueTypes.Tpo $(DEPDIR)/tblgen-TGValueTypes.Po
6089 6089
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6090 6090
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TGValueTypes.cpp' object='tblgen-TGValueTypes.obj' libtool=no @AMDEPBACKSLASH@
6091 6091
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6092
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGValueTypes.obj `if test -f 'llvm/utils/TableGen/TGValueTypes.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGValueTypes.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGValueTypes.cpp'; fi`
6092
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TGValueTypes.obj `if test -f 'llvm/utils/TableGen/TGValueTypes.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TGValueTypes.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TGValueTypes.cpp'; fi`
6093 6093
 
6094 6094
 tblgen-TableGen.o: llvm/utils/TableGen/TableGen.cpp
6095
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TableGen.o -MD -MP -MF $(DEPDIR)/tblgen-TableGen.Tpo -c -o tblgen-TableGen.o `test -f 'llvm/utils/TableGen/TableGen.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TableGen.cpp
6095
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TableGen.o -MD -MP -MF $(DEPDIR)/tblgen-TableGen.Tpo -c -o tblgen-TableGen.o `test -f 'llvm/utils/TableGen/TableGen.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TableGen.cpp
6096 6096
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TableGen.Tpo $(DEPDIR)/tblgen-TableGen.Po
6097 6097
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6098 6098
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TableGen.cpp' object='tblgen-TableGen.o' libtool=no @AMDEPBACKSLASH@
6099 6099
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6100
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TableGen.o `test -f 'llvm/utils/TableGen/TableGen.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TableGen.cpp
6100
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TableGen.o `test -f 'llvm/utils/TableGen/TableGen.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TableGen.cpp
6101 6101
 
6102 6102
 tblgen-TableGen.obj: llvm/utils/TableGen/TableGen.cpp
6103
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TableGen.obj -MD -MP -MF $(DEPDIR)/tblgen-TableGen.Tpo -c -o tblgen-TableGen.obj `if test -f 'llvm/utils/TableGen/TableGen.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TableGen.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TableGen.cpp'; fi`
6103
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TableGen.obj -MD -MP -MF $(DEPDIR)/tblgen-TableGen.Tpo -c -o tblgen-TableGen.obj `if test -f 'llvm/utils/TableGen/TableGen.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TableGen.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TableGen.cpp'; fi`
6104 6104
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TableGen.Tpo $(DEPDIR)/tblgen-TableGen.Po
6105 6105
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6106 6106
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TableGen.cpp' object='tblgen-TableGen.obj' libtool=no @AMDEPBACKSLASH@
6107 6107
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6108
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TableGen.obj `if test -f 'llvm/utils/TableGen/TableGen.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TableGen.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TableGen.cpp'; fi`
6108
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TableGen.obj `if test -f 'llvm/utils/TableGen/TableGen.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TableGen.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TableGen.cpp'; fi`
6109 6109
 
6110 6110
 tblgen-TableGenBackend.o: llvm/utils/TableGen/TableGenBackend.cpp
6111
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TableGenBackend.o -MD -MP -MF $(DEPDIR)/tblgen-TableGenBackend.Tpo -c -o tblgen-TableGenBackend.o `test -f 'llvm/utils/TableGen/TableGenBackend.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TableGenBackend.cpp
6111
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TableGenBackend.o -MD -MP -MF $(DEPDIR)/tblgen-TableGenBackend.Tpo -c -o tblgen-TableGenBackend.o `test -f 'llvm/utils/TableGen/TableGenBackend.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TableGenBackend.cpp
6112 6112
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TableGenBackend.Tpo $(DEPDIR)/tblgen-TableGenBackend.Po
6113 6113
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6114 6114
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TableGenBackend.cpp' object='tblgen-TableGenBackend.o' libtool=no @AMDEPBACKSLASH@
6115 6115
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6116
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TableGenBackend.o `test -f 'llvm/utils/TableGen/TableGenBackend.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TableGenBackend.cpp
6116
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TableGenBackend.o `test -f 'llvm/utils/TableGen/TableGenBackend.cpp' || echo '$(srcdir)/'`llvm/utils/TableGen/TableGenBackend.cpp
6117 6117
 
6118 6118
 tblgen-TableGenBackend.obj: llvm/utils/TableGen/TableGenBackend.cpp
6119
-@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TableGenBackend.obj -MD -MP -MF $(DEPDIR)/tblgen-TableGenBackend.Tpo -c -o tblgen-TableGenBackend.obj `if test -f 'llvm/utils/TableGen/TableGenBackend.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TableGenBackend.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TableGenBackend.cpp'; fi`
6119
+@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -MT tblgen-TableGenBackend.obj -MD -MP -MF $(DEPDIR)/tblgen-TableGenBackend.Tpo -c -o tblgen-TableGenBackend.obj `if test -f 'llvm/utils/TableGen/TableGenBackend.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TableGenBackend.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TableGenBackend.cpp'; fi`
6120 6120
 @am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/tblgen-TableGenBackend.Tpo $(DEPDIR)/tblgen-TableGenBackend.Po
6121 6121
 @am__fastdepCXX_FALSE@	$(AM_V_CXX) @AM_BACKSLASH@
6122 6122
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='llvm/utils/TableGen/TableGenBackend.cpp' object='tblgen-TableGenBackend.obj' libtool=no @AMDEPBACKSLASH@
6123 6123
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
6124
-@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(tblgen_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TableGenBackend.obj `if test -f 'llvm/utils/TableGen/TableGenBackend.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TableGenBackend.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TableGenBackend.cpp'; fi`
6124
+@am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tblgen_CXXFLAGS) $(CXXFLAGS) -c -o tblgen-TableGenBackend.obj `if test -f 'llvm/utils/TableGen/TableGenBackend.cpp'; then $(CYGPATH_W) 'llvm/utils/TableGen/TableGenBackend.cpp'; else $(CYGPATH_W) '$(srcdir)/llvm/utils/TableGen/TableGenBackend.cpp'; fi`
6125 6125
 
6126 6126
 .cpp.o:
6127 6127
 @am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<