llvm-6502/test/Analysis/Andersens/2008-12-27-BuiltinWrongType.ll
Nick Lewycky 3037eda1ef Check that the function prototypes are correct before assuming that the
parameters are pointers.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61451 91177308-0d34-0410-b5e6-96231b3b80d8
2008-12-27 16:20:53 +00:00

20 lines
483 B
LLVM

; RUN: llvm-as < %s | opt -anders-aa
; PR3262
@.str15 = external global [3 x i8] ; <[3 x i8]*> [#uses=1]
declare i8* @strtok(...)
declare i8* @memmove(...)
define void @test1(i8* %want1) nounwind {
entry:
%0 = call i8* (...)* @strtok(i32 0, i8* getelementptr ([3 x i8]* @.str15, i32 0, i32 0)) nounwind ; <i8*> [#uses=0]
unreachable
}
define void @test2() nounwind {
entry:
%0 = call i8* (...)* @memmove()
unreachable
}