[llvm-commits] CVS: llvm/test/Assembler/2007-02-07-RenameInternals.ll
Reid Spencer
reid at x10sys.com
Wed Feb 7 15:41:30 PST 2007
Changes in directory llvm/test/Assembler:
2007-02-07-RenameInternals.ll added (r1.1)
---
Log message:
For PR1187: http://llvm.org/PR1187 :
Add a test case to test rename of internal linkage functions with the same
name, without an error or warning.
---
Diffs of the changes: (+11 -0)
2007-02-07-RenameInternals.ll | 11 +++++++++++
1 files changed, 11 insertions(+)
Index: llvm/test/Assembler/2007-02-07-RenameInternals.ll
diff -c /dev/null llvm/test/Assembler/2007-02-07-RenameInternals.ll:1.1
*** /dev/null Wed Feb 7 17:41:21 2007
--- llvm/test/Assembler/2007-02-07-RenameInternals.ll Wed Feb 7 17:41:10 2007
***************
*** 0 ****
--- 1,11 ----
+ ; PR1187
+ ; RUN: llvm-upgrade < %s > /dev/null
+
+ implementation
+ internal void %func(int %x) {
+ ret void
+ }
+
+ internal void %func(int %x) {
+ ret void
+ }
More information about the llvm-commits
mailing list