mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
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:
parent
5c4a96dfc5
commit
161a4c9d79
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user