From: Reid Spencer Date: Wed, 7 Feb 2007 23:41:10 +0000 (+0000) Subject: For PR1187: X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2aa745e7099d192fcd37bcb53af1d921b8a692be;p=oota-llvm.git For PR1187: Add a test case to test rename of internal linkage functions with the same name, without an error or warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34018 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Assembler/2007-02-07-RenameInternals.ll b/test/Assembler/2007-02-07-RenameInternals.ll new file mode 100644 index 00000000000..56b005810ca --- /dev/null +++ b/test/Assembler/2007-02-07-RenameInternals.ll @@ -0,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 +}