[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-06-20 Thread Devang Patel
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.62 -> 1.63 --- Log message: Update AnalysisGroup documentation to document restriction that allows only one ImmutablePass in a group. --- Diffs of the changes: (+4 -3) WritingAnLLVMPass.html |7 --- 1 files changed,

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-06-07 Thread Tanya Lattner
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.61 -> 1.62 --- Log message: Correct typo. Should be "not allowed" --- Diffs of the changes: (+2 -2) WritingAnLLVMPass.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/WritingAnLLVMPass.ht

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-05-17 Thread Chris Lattner
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.60 -> 1.61 --- Log message: validation fix --- Diffs of the changes: (+2 -2) WritingAnLLVMPass.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/WritingAnLLVMPass.html diff -u llvm/docs/Wr

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-05-17 Thread Chris Lattner
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.59 -> 1.60 --- Log message: validation fixes --- Diffs of the changes: (+7 -5) WritingAnLLVMPass.html | 12 +++- 1 files changed, 7 insertions(+), 5 deletions(-) Index: llvm/docs/WritingAnLLVMPass.html diff -u ll

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-05-02 Thread Devang Patel
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.58 -> 1.59 --- Log message: Drop 'const' --- Diffs of the changes: (+4 -4) WritingAnLLVMPass.html |8 1 files changed, 4 insertions(+), 4 deletions(-) Index: llvm/docs/WritingAnLLVMPass.html diff -u llvm/docs/

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-05-02 Thread Devang Patel
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.57 -> 1.58 --- Log message: Use 'static const char' instead of 'static const int'. Due to darwin gcc bug, one version of darwin linker coalesces static const int, which defauts PassID based pass identification. --- Diffs of th

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-05-01 Thread Devang Patel
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.56 -> 1.57 --- Log message: Update doc to reflect changes I am about to install to fix PR 888: http://llvm.org/PR888 . --- Diffs of the changes: (+20 -1) WritingAnLLVMPass.html | 21 - 1 files changed,

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-04-16 Thread Devang Patel
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.55 -> 1.56 --- Log message: Remove "ModulePasses requiring FunctionPasses" from the list of future extensions. --- Diffs of the changes: (+2 -29) WritingAnLLVMPass.html | 31 ++- 1 files changed

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-04-16 Thread Devang Patel
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.54 -> 1.55 --- Log message: Document how, module pass can require function pass. --- Diffs of the changes: (+19 -3) WritingAnLLVMPass.html | 22 +++--- 1 files changed, 19 insertions(+), 3 deletions(-) In

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-03-19 Thread Devang Patel
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.53 -> 1.54 --- Log message: Document LoopPass. --- Diffs of the changes: (+89 -1) WritingAnLLVMPass.html | 90 - 1 files changed, 89 insertions(+), 1 deletion(-) Index: llv

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-03-14 Thread Jim Laskey
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.52 -> 1.53 --- Log message: Change e-mail address. --- Diffs of the changes: (+2 -2) WritingAnLLVMPass.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/WritingAnLLVMPass.html diff -u llvm/

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2007-01-23 Thread Devang Patel
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.51 -> 1.52 --- Log message: Fix cut-n-pasto. --- Diffs of the changes: (+7 -7) WritingAnLLVMPass.html | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) Index: llvm/docs/WritingAnLLVMPass.html diff -u

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2006-09-28 Thread Reid Spencer
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.49 -> 1.50 --- Log message: Provide a gdb usage fix provided by Zhongzing Xu. --- Diffs of the changes: (+2 -2) WritingAnLLVMPass.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/WritingA

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2006-08-27 Thread Chris Lattner
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.48 -> 1.49 --- Log message: Update to match changes in RegisterAnalysisGroup usage --- Diffs of the changes: (+3 -3) WritingAnLLVMPass.html |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index: llvm/docs/W

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2006-08-27 Thread Chris Lattner
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.47 -> 1.48 --- Log message: update doc: analyze is gone and passes should just use RegisterPass --- Diffs of the changes: (+20 -43) WritingAnLLVMPass.html | 63 +++-- 1 files cha

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2006-08-11 Thread Chris Lattner
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.46 -> 1.47 --- Log message: Minor cleanups --- Diffs of the changes: (+5 -5) WritingAnLLVMPass.html | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) Index: llvm/docs/WritingAnLLVMPass.html diff -u llvm/d

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2006-08-07 Thread Reid Spencer
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.45 -> 1.46 --- Log message: Update the instructions for writing a pass as a loadable module per the new definition in MakefileGuilde.html and Makefile.rules. --- Diffs of the changes: (+6 -4) WritingAnLLVMPass.html | 10 ++

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2006-08-04 Thread Jim Laskey
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.44 -> 1.45 --- Log message: Added how to add machine passes to command line options. --- Diffs of the changes: (+217 -78) WritingAnLLVMPass.html | 295 - 1 files changed, 217

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2006-01-06 Thread Robert L. Bocchino Jr.
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.42 -> 1.43 --- Log message: Fixed a typo; "= 1" was missing. --- Diffs of the changes: (+2 -2) WritingAnLLVMPass.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/WritingAnLLVMPass.html di

[llvm-commits] CVS: llvm/docs/WritingAnLLVMPass.html

2005-11-28 Thread John Criswell
Changes in directory llvm/docs: WritingAnLLVMPass.html updated: 1.41 -> 1.42 --- Log message: Fixed a punctuation error. --- Diffs of the changes: (+2 -2) WritingAnLLVMPass.html |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/docs/WritingAnLLVMPass.html diff -u