Changes in directory llvm/lib/CodeGen/SelectionDAG:
ScheduleDAG.cpp updated: 1.93 -> 1.94
---
Log message:
Eliminate a memory leak.
---
Diffs of the changes: (+1 -0)
ScheduleDAG.cpp |1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
diff -u llvm
Changes in directory llvm/include/llvm/Support:
InstVisitor.h updated: 1.39 -> 1.40
---
Log message:
Improve InstVisitor docs.
---
Diffs of the changes: (+46 -40)
InstVisitor.h | 86 +++---
1 files changed, 46 insertions(+), 40 deletion
Changes in directory llvm/include/llvm:
Type.h updated: 1.86 -> 1.87
---
Log message:
Clarify type naming.
---
Diffs of the changes: (+5 -0)
Type.h |5 +
1 files changed, 5 insertions(+)
Index: llvm/include/llvm/Type.h
diff -u llvm/include/llvm/Type.h:1.86 llvm/include/llvm/Type.
Changes in directory llvm/include/llvm:
Module.h updated: 1.72 -> 1.73
---
Log message:
Make the getNamedFunction and getNamedGlobal methods be const. They don't
change the module in any way and we should enforce that.
---
Diffs of the changes: (+2 -2)
Module.h |4 ++--
1 files changed
Changes in directory llvm/lib/VMCore:
Module.cpp updated: 1.67 -> 1.68
---
Log message:
Make the getNamedFunction and getNamedGlobal methods be const. They don't
change the module in any way and we should enforce that.
---
Diffs of the changes: (+8 -8)
Module.cpp | 16
1
Changes in directory llvm/tools/llvm2cpp:
CppWriter.cpp updated: 1.7 -> 1.8
---
Log message:
Major reorganization and extension of the code. The diff on this will be a
mess as functions were moved around into a better ordering. The code was
extended to provide various -gen-* options to better c
Changes in directory llvm/docs/CommandGuide:
llvm2cpp.pod updated: 1.2 -> 1.3
---
Log message:
Update the documentation for llvm2cpp after the -gen-* options were added.
---
Diffs of the changes: (+108 -14)
llvm2cpp.pod | 122 ---
1
Changes in directory llvm/docs/CommandGuide:
tblgen.pod added (r1.1)
---
Log message:
Add a brief description for the tblgen program. More detail is needed but
the current author is not the person to provide it. Now that the file
exists, perhaps others will chime in and embellish.
---
Diffs
Changes in directory llvm/lib/CodeGen/SelectionDAG:
ScheduleDAG.cpp updated: 1.94 -> 1.95
---
Log message:
commuteInstruction() does not always create a new MI!
---
Diffs of the changes: (+4 -2)
ScheduleDAG.cpp |6 --
1 files changed, 4 insertions(+), 2 deletions(-)
Index: llvm/l
Changes in directory llvm/include/llvm/ADT:
StringExtras.h updated: 1.28 -> 1.29
---
Log message:
make 64-bit safe and fix the build on alpha
---
Diffs of the changes: (+2 -13)
StringExtras.h | 15 ++-
1 files changed, 2 insertions(+), 13 deletions(-)
Index: llvm/include/llv
Changes in directory llvm/lib/Target/X86:
X86InstrSSE.td updated: 1.121 -> 1.122
X86RegisterInfo.cpp updated: 1.154 -> 1.155
---
Log message:
Rename instructions for consistency sake.
---
Diffs of the changes: (+102 -92)
X86InstrSSE.td | 164 ++
Changes in directory llvm/include/llvm/ADT:
StringExtras.h updated: 1.29 -> 1.30
---
Log message:
revert for now
---
Diffs of the changes: (+13 -2)
StringExtras.h | 15 +--
1 files changed, 13 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/ADT/StringExtras.h
diff -u
Changes in directory llvm/include/llvm/ADT:
StringExtras.h updated: 1.30 -> 1.31
---
Log message:
Fix build breakage on alpha, without causing it on x86. as a bonus, all
platforms can invent the same number of unique names now
---
Diffs of the changes: (+2 -13)
StringExtras.h | 15 ++---
Changes in directory llvm/include/llvm:
ValueSymbolTable.h updated: 1.1 -> 1.2
TypeSymbolTable.h updated: 1.2 -> 1.3
SymbolTable.h updated: 1.51 -> 1.52
---
Log message:
Fix build breakage on alpha, without causing it on x86. as a bonus, all
platforms can invent the same number of unique name
Changes in directory llvm/tools/llvm2cpp:
CppWriter.cpp updated: 1.8 -> 1.9
---
Log message:
fix utostr
---
Diffs of the changes: (+1 -1)
CppWriter.cpp |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvm2cpp/CppWriter.cpp
diff -u llvm/tools/llvm2cpp/CppWriter.
Wouldn't uint32_t be sufficient for these? I can't see anyone having
more than 4 billion name collisions. And it reduce a little arithmetic
cost on 32-bit platforms.
Reid.
On Wed, 2006-05-31 at 15:18 -0500, Andrew Lenharth wrote:
> Log message:
>
> Fix build breakage on alpha, without causing it
On Wed, 31 May 2006, Reid Spencer wrote:
Wouldn't uint32_t be sufficient for these? I can't see anyone having
more than 4 billion name collisions. And it reduce a little arithmetic
cost on 32-bit platforms.
Fine with me either way. Collision handling code isn't going to amazingly
suffer from
On Wed, 2006-05-31 at 16:17, Chris Lattner wrote:
> On Wed, 31 May 2006, Reid Spencer wrote:
> > Wouldn't uint32_t be sufficient for these? I can't see anyone having
> > more than 4 billion name collisions. And it reduce a little arithmetic
> > cost on 32-bit platforms.
>
> Fine with me either way
Changes in directory llvm/include/llvm:
ValueSymbolTable.h updated: 1.2 -> 1.3
TypeSymbolTable.h updated: 1.3 -> 1.4
SymbolTable.h updated: 1.52 -> 1.53
---
Log message:
4 billion names is enough for anyone. And really fix the build on alpha this
time
---
Diffs of the changes: (+4 -3)
Sym
Changes in directory llvm/lib/Transforms/Scalar:
LCSSA.cpp updated: 1.7 -> 1.8
---
Log message:
Extract a huge loop into a helper method. Fix a few iterator-invalidation bugs.
---
Diffs of the changes: (+115 -88)
LCSSA.cpp | 203 +++
Changes in directory llvm/lib/Transforms/Scalar:
InstructionCombining.cpp updated: 1.488 -> 1.489
---
Log message:
Swap the order of operands created here. For +&|^, the order doesn't matter,
but for sub, it really does! Fix fixes a miscompilation of fibheap_cut in
llvmgcc4.
---
Diffs of th
Changes in directory llvm/include/llvm/ADT:
StringExtras.h updated: 1.31 -> 1.32
---
Log message:
Fix utostr once and for all, by making there only be one function named
utostr. To keep the efficiency in the 32-bit case, make it check to see if
the value is 32-bits and if so switch over to the
Changes in directory llvm/lib/Support/bzip2:
bzlib.c updated: 1.2 -> 1.3
---
Log message:
Squelch this warning:
/bzlib.c:126: warning: string length `1056' is greater than the length `509' ISO
C89 compilers are required to support
---
Diffs of the changes: (+4 -0)
bzlib.c |4
1 fi
Changes in directory llvm/lib/Target/X86:
X86InstrInfo.td updated: 1.272 -> 1.273
---
Log message:
Sign extender
---
Diffs of the changes: (+10 -8)
X86InstrInfo.td | 18 ++
1 files changed, 10 insertions(+), 8 deletions(-)
Index: llvm/lib/Target/X86/X86InstrInfo.td
diff
Changes in directory llvm:
CREDITS.TXT updated: 1.54 -> 1.55
---
Log message:
Add my most recent work.
---
Diffs of the changes: (+1 -1)
CREDITS.TXT |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/CREDITS.TXT
diff -u llvm/CREDITS.TXT:1.54 llvm/CREDITS.TXT:1.55
--- l
Changes in directory llvm/lib/Target/CBackend:
Writer.cpp updated: 1.262 -> 1.263
---
Log message:
Fix casting so there's no warning on Alpha.
---
Diffs of the changes: (+1 -1)
Writer.cpp |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/CBackend/Writer.cpp
Changes in directory llvm/lib/Target/X86:
X86ATTAsmPrinter.cpp updated: 1.49 -> 1.50
X86InstrInfo.td updated: 1.273 -> 1.274
X86IntelAsmPrinter.cpp updated: 1.51 -> 1.52
---
Log message:
Rename ASM modifier trunc8, trunc16 to subreg8, subreg16.
---
Diffs of the changes: (+7 -7)
X86ATTAsmPr
Changes in directory llvm/lib/Target/X86:
X86ISelLowering.cpp updated: 1.224 -> 1.225
---
Log message:
Remove a warning
---
Diffs of the changes: (+1 -1)
X86ISelLowering.cpp |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/X86/X86ISelLowering.cpp
diff -u ll
Changes in directory llvm/autoconf:
AutoRegen.sh updated: 1.12 -> 1.13
---
Log message:
Tighten this script up a bit.
---
Diffs of the changes: (+7 -15)
AutoRegen.sh | 22 +++---
1 files changed, 7 insertions(+), 15 deletions(-)
Index: llvm/autoconf/AutoRegen.sh
diff -u
Changes in directory llvm:
Makefile.config.in updated: 1.57 -> 1.58
---
Log message:
Support correct build:
1. Capture the ENABLE_THREADS configure variable in Makefile.config
2. Use ENABLE_THREADS to avoid building ParallelJIT if threads are not
present.
---
Diffs of the changes: (+3 -0)
Changes in directory llvm/examples:
Makefile updated: 1.6 -> 1.7
---
Log message:
Support correct build:
1. Capture the ENABLE_THREADS configure variable in Makefile.config
2. Use ENABLE_THREADS to avoid building ParallelJIT if threads are not
present.
---
Diffs of the changes: (+5 -2)
Changes in directory llvm/tools/analyze:
Makefile updated: 1.30 -> 1.31
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Dif
Changes in directory llvm/runtime/GCCLibraries/libc:
Makefile updated: 1.7 -> 1.8
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
Changes in directory llvm/tools/llvm-prof:
Makefile updated: 1.6 -> 1.7
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Dif
Changes in directory llvm/tools/llvm-ld:
Makefile updated: 1.7 -> 1.8
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs
Changes in directory llvm/tools/llc:
Makefile updated: 1.81 -> 1.82
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs o
Changes in directory llvm/tools/llvm-link:
Makefile updated: 1.12 -> 1.13
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
D
Changes in directory llvm/lib/CodeGen:
Makefile updated: 1.25 -> 1.26
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs
Changes in directory llvm/runtime/GC/SemiSpace:
Makefile updated: 1.6 -> 1.7
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
--
Changes in directory llvm/tools/llvm-extract:
Makefile updated: 1.3 -> 1.4
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Changes in directory llvm/tools/bugpoint:
Makefile updated: 1.16 -> 1.17
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Di
Changes in directory llvm/lib/VMCore:
Makefile updated: 1.15 -> 1.16
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs
Changes in directory llvm/lib/Bytecode/Reader:
Makefile updated: 1.4 -> 1.5
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Changes in directory llvm/lib/Target/CBackend:
Makefile updated: 1.4 -> 1.5
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Changes in directory llvm/tools/llvmc:
Makefile updated: 1.16 -> 1.17
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs
Changes in directory llvm:
Makefile.rules updated: 1.374 -> 1.375
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs of
Changes in directory llvm/tools/llvm-nm:
Makefile updated: 1.6 -> 1.7
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs
Changes in directory llvm/runtime/libtrace:
Makefile updated: 1.13 -> 1.14
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Changes in directory llvm/tools/llvm-as:
Makefile updated: 1.16 -> 1.17
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Dif
Changes in directory llvm/tools/opt:
Makefile updated: 1.54 -> 1.55
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs o
Changes in directory llvm/tools/llvm-db:
Makefile updated: 1.9 -> 1.10
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diff
Changes in directory llvm/lib/AsmParser:
Makefile updated: 1.9 -> 1.10
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diff
Changes in directory llvm/projects/Stacker/tools/stkrc:
Makefile updated: 1.10 -> 1.11
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link t
Changes in directory llvm/tools/llvm-ar:
Makefile updated: 1.8 -> 1.9
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs
Changes in directory llvm/tools/llvm-bcanalyzer:
Makefile updated: 1.4 -> 1.5
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
-
Changes in directory llvm/tools/gccas:
Makefile updated: 1.24 -> 1.25
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs
Changes in directory llvm/lib/Support/bzip2:
Makefile updated: 1.4 -> 1.5
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
D
Changes in directory llvm/tools/gccld:
Makefile updated: 1.14 -> 1.15
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diffs
Changes in directory llvm/tools/llvm-ranlib:
Makefile updated: 1.3 -> 1.4
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
D
Changes in directory llvm/examples/ModuleMaker:
Makefile updated: 1.8 -> 1.9
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
--
Changes in directory llvm/lib/Bytecode/Writer:
Makefile updated: 1.4 -> 1.5
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Changes in directory llvm/tools/llvm2cpp:
Makefile updated: 1.3 -> 1.4
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Diff
Changes in directory llvm/lib/CodeGen/SelectionDAG:
Makefile updated: 1.4 -> 1.5
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
Changes in directory llvm/tools/llvm-dis:
Makefile updated: 1.17 -> 1.18
---
Log message:
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
---
Di
Changes in directory llvm/tools/llc:
Makefile updated: 1.82 -> 1.83
---
Log message:
Oops, llc needs libTarget.a not Target.o
---
Diffs of the changes: (+1 -1)
Makefile |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llc/Makefile
diff -u llvm/tools/llc/Makefil
Changes in directory llvm/runtime/GCCLibraries/libm:
temp.c updated: 1.1 -> 1.2
---
Log message:
Put an innocuous statement in this file to quelch warnings about compiling
an empty file.
---
Diffs of the changes: (+1 -0)
temp.c |1 +
1 files changed, 1 insertion(+)
Index: llvm/runtim
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.6 -> 1.7
---
Log message:
Build llvm-config into the ToolDir not in the local directory. This makes
it more likely to be in a developer's path and consistent with all the
other tools.
---
Diffs of the changes: (+6 -6)
Makefi
Changes in directory llvm:
Makefile.rules updated: 1.375 -> 1.376
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Turn -pedantic and -Wno-long-long compile flags on by default. In a few
places, avoid the warnings by removing these options in the local makefile.
One notable exception
Changes in directory llvm/projects/Stacker/lib/runtime:
Makefile updated: 1.4 -> 1.5
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Turn -pedantic and -Wno-long-long compile flags on by default. In a few
places, avoid the warnings by removing these options in the local makefile.
On
Changes in directory llvm/lib/System:
Makefile updated: 1.10 -> 1.11
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Turn -pedantic and -Wno-long-long compile flags on by default. In a few
places, avoid the warnings by removing these options in the local makefile.
One notable except
Changes in directory llvm/projects/sample/lib/sample:
Makefile updated: 1.6 -> 1.7
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Turn -pedantic and -Wno-long-long compile flags on by default. In a few
places, avoid the warnings by removing these options in the local makefile.
One
Changes in directory llvm/runtime/libdummy:
Makefile updated: 1.7 -> 1.8
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Turn -pedantic and -Wno-long-long compile flags on by default. In a few
places, avoid the warnings by removing these options in the local makefile.
One notable ex
Changes in directory llvm/lib/Target/CBackend:
Makefile updated: 1.5 -> 1.6
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Turn -pedantic and -Wno-long-long compile flags on by default. In a few
places, avoid the warnings by removing these options in the local makefile.
One notable
Changes in directory llvm/tools/llvm2cpp:
CppWriter.cpp updated: 1.9 -> 1.10
---
Log message:
Fix a bug where incorrect C++ was being emitted.
---
Diffs of the changes: (+0 -1)
CppWriter.cpp |1 -
1 files changed, 1 deletion(-)
Index: llvm/tools/llvm2cpp/CppWriter.cpp
diff -u llvm/to
Changes in directory llvm/lib/Target/X86:
X86ISelLowering.cpp updated: 1.225 -> 1.226
---
Log message:
Typos
---
Diffs of the changes: (+3 -3)
X86ISelLowering.cpp |6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/lib/Target/X86/X86ISelLowering.cpp
diff -u llvm/li
Changes in directory llvm/lib/Target/CBackend:
Makefile updated: 1.6 -> 1.7
---
Log message:
For PR786: http://llvm.cs.uiuc.edu/PR786 :
Don't warn about -pedantic errors. Add a note to the PR instead.
---
Diffs of the changes: (+3 -0)
Makefile |3 +++
1 files changed, 3 insertions(+)
Changes in directory llvm/lib/Transforms/Scalar:
LCSSA.cpp updated: 1.9 -> 1.10
---
Log message:
Remove a FIXME that was fixed with my last patch.
---
Diffs of the changes: (+0 -2)
LCSSA.cpp |2 --
1 files changed, 2 deletions(-)
Index: llvm/lib/Transforms/Scalar/LCSSA.cpp
diff -u ll
Changes in directory llvm/lib/Transforms/Scalar:
LCSSA.cpp updated: 1.8 -> 1.9
---
Log message:
More cleanups. Also, add a special case for updating PHI nodes, and
reimplement getValueDominatingFunction to walk the DominanceTree rather than
just searching blindly.
---
Diffs of the changes:
Changes in directory llvm/lib/CodeGen:
Makefile updated: 1.26 -> 1.27
---
Log message:
Prevent the -pedantic option from causing Mac OS/X build problems:
LiveIntervalAnalysis.cpp:218: error: floating constant exceeds range of 'double'
---
Diffs of the changes: (+3 -0)
Makefile |3 +++
79 matches
Mail list logo