Redefinition of functions is no longer permitted.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33000 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-07 19:33:49 +00:00
parent 5c4a96dfc5
commit 161a4c9d79
2 changed files with 3 additions and 4 deletions

View File

@ -4,8 +4,7 @@
%FunTy = type int(int)
declare int "test"(...) ; Test differences of prototype
declare int "test"() ; Differ only by vararg
declare int "test"(int) ; Test forward declaration merging
implementation

View File

@ -12,13 +12,13 @@ uint %test_extractelement(<4 x uint> %V) {
ret <4 x uint> %R
}
<4 x uint> %test_shufflevector(<4 x uint> %V) {
<4 x uint> %test_shufflevector_u(<4 x uint> %V) {
%R = shufflevector <4 x uint> %V, <4 x uint> %V,
<4 x uint> < uint 1, uint undef, uint 7, uint 2>
ret <4 x uint> %R
}
<4 x float> %test_shufflevector(<4 x float> %V) {
<4 x float> %test_shufflevector_f(<4 x float> %V) {
%R = shufflevector <4 x float> %V, <4 x float> undef,
<4 x uint> < uint 1, uint undef, uint 7, uint 2>
ret <4 x float> %R