Use stable sort.

llvm-svn: 54222
diff --git a/clang/utils/sorttable.js b/clang/utils/sorttable.js
index 25bccb2..4352d3b 100644
--- a/clang/utils/sorttable.js
+++ b/clang/utils/sorttable.js
@@ -148,9 +148,9 @@
 	          row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]];
 	        }
 	        /* If you want a stable sort, uncomment the following line */
-	        //sorttable.shaker_sort(row_array, this.sorttable_sortfunction);
+	        sorttable.shaker_sort(row_array, this.sorttable_sortfunction);
 	        /* and comment out this one */
-	        row_array.sort(this.sorttable_sortfunction);
+	        //row_array.sort(this.sorttable_sortfunction);
 	        
 	        tb = this.sorttable_tbody;
 	        for (var j=0; j<row_array.length; j++) {