[llvm-commits] CVS: llvm/test/Feature/aliases.ll

2007-04-25 Thread Anton Korobeynikov
Changes in directory llvm/test/Feature: aliases.ll added (r1.1) --- Log message: Implement aliases. This fixes PR1017: http://llvm.org/PR1017 and it's dependent bugs. CFE part will follow. --- Diffs of the changes: (+28 -0) aliases.ll | 28 1 files changed

[llvm-commits] CVS: llvm/test/Feature/aliases.ll

2007-04-27 Thread Chris Lattner
Changes in directory llvm/test/Feature: aliases.ll updated: 1.1 -> 1.2 --- Log message: not fully implemented yet. --- Diffs of the changes: (+2 -0) aliases.ll |2 ++ 1 files changed, 2 insertions(+) Index: llvm/test/Feature/aliases.ll diff -u llvm/test/Feature/aliases.ll:1.1 llvm/te

[llvm-commits] CVS: llvm/test/Feature/aliases.ll

2007-04-28 Thread Anton Korobeynikov
Changes in directory llvm/test/Feature: aliases.ll updated: 1.2 -> 1.3 --- Log message: Implement review feedback. Aliasees can be either GlobalValue's or bitcasts of them. --- Diffs of the changes: (+2 -2) aliases.ll |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index:

Re: [llvm-commits] CVS: llvm/test/Feature/aliases.ll

2007-04-25 Thread Chris Lattner
> Implement aliases. This fixes PR1017: http://llvm.org/PR1017 and > it's dependent bugs. CFE part will follow. One thing that just occurred to me. When you switch GlobalAlias to have a Use for the aliasee, RAUW will work on globals that are aliased. Unfortunately, various bits of code (lik