[llvm-commits] CVS: llvm-www/pubs/pubs.js

Chris Lattner sabre at nondot.org
Sat Jun 27 01:13:54 PDT 2009



Changes in directory llvm-www/pubs:

pubs.js updated: 1.26 -> 1.27
---
Log message:

fix & escaping.


---
Diffs of the changes:  (+7 -7)

 pubs.js |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)


Index: llvm-www/pubs/pubs.js
diff -u llvm-www/pubs/pubs.js:1.26 llvm-www/pubs/pubs.js:1.27
--- llvm-www/pubs/pubs.js:1.26	Sat Jun 27 03:11:46 2009
+++ llvm-www/pubs/pubs.js	Sat Jun 27 03:13:35 2009
@@ -364,7 +364,7 @@
   {url: '2006-10-CASES-IncreaseMem.html',
    title: 'Automated Compile-Time and Run-Time Techniques to Increase Usable Memory in MMU-Less Embedded Systems',
    author: 'L. Bai, L. Yang, and R. P. Dick',
-   published: "Proc. Int. Conf. Compilers, Architecture & Synthesis for Embedded Systems",
+   published: "Proc. Int. Conf. Compilers, Architecture & Synthesis for Embedded Systems",
    location: 'pp. 125-135',
    month: 10,
    year: 2006},
@@ -491,7 +491,7 @@
   {url: '2005-07-IDEAS-PerfEstimation.html',
    title: 'Practical Techniques for Performance Estimation of Processors',
    author: 'Abhijit Ray, Thambipillai Srikanthan and Wu Jigang',
-   published: "Proc. of the 9th International Database Engineering & Application Symposium (IDEAS'05)",
+   published: "Proc. of the 9th International Database Engineering & Application Symposium (IDEAS'05)",
    month: 7,
    year: 2005},
 
@@ -583,7 +583,7 @@
    year: 2004},
 
   {url: '2004-01-30-CGO-LLVM.html',
-   title: 'LLVM: A Compilation Framework for Lifelong Program Analysis & Transformation',
+   title: 'LLVM: A Compilation Framework for Lifelong Program Analysis & Transformation',
    author: 'Chris Lattner and Vikram Adve',
    published: "Proc. of the 2004 International Symposium on Code Generation and Optimization (CGO'04)",
    location: 'Palo Alto, California',
@@ -624,7 +624,7 @@
 
   {url: '2003-05-01-GCCSummit2003.html',
    title: 'Architecture For a Next-Generation GCC',
-   author: 'Chris Lattner & Vikram Adve',
+   author: 'Chris Lattner & Vikram Adve',
    published: "First Annual GCC Developers' Summit",
    location: 'Ottawa, Canada',
    month: 5,
@@ -632,7 +632,7 @@
 
   {url: '2003-04-29-DataStructureAnalysisTR.html',
    title: 'Data Structure Analysis: An Efficient Context-Sensitive Heap Analysis',
-   author: 'Chris Lattner & Vikram Adve',
+   author: 'Chris Lattner & Vikram Adve',
    published: 'Technical Report #UIUCDCS-R-2003-2340',
    location: 'Computer Science Dept., Univ. of Illinois',
    month: 4,
@@ -658,7 +658,7 @@
 
   {url: '2002-06-AutomaticPoolAllocation.html',
    title: 'Automatic Pool Allocation for Disjoint Data Structures',
-   author: 'Chris Lattner & Vikram Adve',
+   author: 'Chris Lattner & Vikram Adve',
    published: 'ACM SIGPLAN Workshop on Memory System Performance (MSP)',
    location: 'Berlin, Germany',
    month: 6,
@@ -672,7 +672,7 @@
  * @return {string} HTML-escaped version of str.
  */
 function htmlEscape(str) {
-  return str.replace(/&/g, '&').replace(/</g, '<')
+  return str.replace(/</g, '<')
       .replace(/>/g, '>');
 }
 






More information about the llvm-commits mailing list