From alenhar2 at cs.uiuc.edu Mon Jan 2 15:16:05 2006 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Mon, 2 Jan 2006 15:16:05 -0600 Subject: [llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp Message-ID: <200601022116.PAA28203@zion.cs.uiuc.edu> Changes in directory llvm/lib/Target/Alpha: AlphaISelDAGToDAG.cpp updated: 1.25 -> 1.26 --- Log message: typeo --- Diffs of the changes: (+1 -1) AlphaISelDAGToDAG.cpp | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp diff -u llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp:1.25 llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp:1.26 --- llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp:1.25 Sun Jan 1 16:16:14 2006 +++ llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp Mon Jan 2 15:15:53 2006 @@ -65,7 +65,7 @@ { build = 0; break; } x >>= 8; } - return x; + return build; } static bool isFPZ(SDOperand N) { From lattner at cs.uiuc.edu Tue Jan 3 00:05:00 2006 From: lattner at cs.uiuc.edu (Chris Lattner) Date: Tue, 3 Jan 2006 00:05:00 -0600 Subject: [llvm-commits] CVS: llvm/docs/AliasAnalysis.html Message-ID: <200601030605.AAA31350@zion.cs.uiuc.edu> Changes in directory llvm/docs: AliasAnalysis.html updated: 1.25 -> 1.26 --- Log message: update usage of -print-alias-sets --- Diffs of the changes: (+9 -3) AliasAnalysis.html | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) Index: llvm/docs/AliasAnalysis.html diff -u llvm/docs/AliasAnalysis.html:1.25 llvm/docs/AliasAnalysis.html:1.26 --- llvm/docs/AliasAnalysis.html:1.25 Mon Sep 6 18:00:30 2004 +++ llvm/docs/AliasAnalysis.html Tue Jan 3 00:04:48 2006 @@ -889,9 +889,15 @@
The -print-alias-sets pass is exposed as part of the -analyze tool to print out the Alias Sets formed by the opt tool to print out the Alias Sets formed by the AliasSetTracker class. This is useful if you're using -the AliasSetTracker class.
+the AliasSetTracker class. To use it, use something like: + ++% opt -ds-aa -print-alias-sets -disable-output ++