[llvm-commits] [llvm] r61927 - in /llvm/trunk: CREDITS.TXT lib/CodeGen/RegAllocPBQP.cpp

Misha Brukman brukman+llvm at gmail.com
Thu Jan 8 08:40:28 PST 2009


Author: brukman
Date: Thu Jan  8 10:40:25 2009
New Revision: 61927

URL: http://llvm.org/viewvc/llvm-project?rev=61927&view=rev
Log:
* Moved author attribution to CREDITS.TXT
* Removed trailing whitespace

Modified:
    llvm/trunk/CREDITS.TXT
    llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp

Modified: llvm/trunk/CREDITS.TXT
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CREDITS.TXT?rev=61927&r1=61926&r2=61927&view=diff

==============================================================================
--- llvm/trunk/CREDITS.TXT (original)
+++ llvm/trunk/CREDITS.TXT Thu Jan  8 10:40:25 2009
@@ -1,6 +1,6 @@
 This file is a partial list of people who have contributed to the LLVM
 project.  If you have contributed a patch or made some other contribution to
-LLVM, please submit a patch to this file to add yourself, and it will be 
+LLVM, please submit a patch to this file to add yourself, and it will be
 done!
 
 The list is sorted by name and formatted to allow easy grepping and
@@ -33,7 +33,7 @@
 
 N: Neil Booth
 E: neil at daikokuya.co.uk
-D: APFloat implementation.  
+D: APFloat implementation.
 
 N: Misha Brukman
 E: brukman+llvm at uiuc.edu
@@ -82,7 +82,7 @@
 E: gaeke at uiuc.edu
 W: http://www.students.uiuc.edu/~gaeke/
 D: Portions of X86 static and JIT compilers; initial SparcV8 backend
-D: Dynamic trace optimizer 
+D: Dynamic trace optimizer
 D: FreeBSD/X86 compatibility fixes, the llvm-nm tool
 
 N: Nicolas Geoffray
@@ -114,6 +114,10 @@
 E: ggreif at gmail.com
 D: Improvements for space efficiency
 
+N: Lang Hames
+E: lhames at gmail.com
+D: PBQP-based register allocator
+
 N: Gordon Henriksen
 E: gordonhenriksen at mac.com
 D: Pluggable GC support
@@ -126,7 +130,7 @@
 
 N: Paolo Invernizzi
 E: arathorn at fastwebnet.it
-D: Visual C++ compatibility fixes 
+D: Visual C++ compatibility fixes
 
 N: Patrick Jenkins
 E: patjenk at wam.umd.edu
@@ -168,7 +172,7 @@
 E: jlaskey at apple.com
 D: Improvements to the PPC backend, instruction scheduling
 D: Debug and Dwarf implementation
-D: Auto upgrade mangler 
+D: Auto upgrade mangler
 D: llvm-gcc4 svn wrangler
 
 N: Chris Lattner
@@ -217,7 +221,7 @@
 
 N: Morten Ofstad
 E: morten at hue.no
-D: Visual C++ compatibility fixes 
+D: Visual C++ compatibility fixes
 
 N: Richard Osborne
 E: richard at xmos.com

Modified: llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp?rev=61927&r1=61926&r2=61927&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegAllocPBQP.cpp Thu Jan  8 10:40:25 2009
@@ -16,7 +16,7 @@
 //
 // The PBQP solver (pbqp.c) provided for this allocator uses a heuristic tuned
 // for register allocation. For more information on PBQP for register
-// allocation see the following papers:
+// allocation, see the following papers:
 //
 //   (1) Hames, L. and Scholz, B. 2006. Nearly optimal register allocation with
 //   PBQP. In Proceedings of the 7th Joint Modular Languages Conference
@@ -27,9 +27,6 @@
 //   Compilers and Tools for Embedded Systems (LCTES'02), ACM Press, New York,
 //   NY, USA, 139-148.
 //
-// Author: Lang Hames
-// Email: lhames at gmail.com
-//
 //===----------------------------------------------------------------------===//
 
 #define DEBUG_TYPE "regalloc"





More information about the llvm-commits mailing list