diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Analysis/Andersens/2008-12-27-BuiltinWrongType.ll | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Analysis/Andersens/2008-12-27-BuiltinWrongType.ll b/test/Analysis/Andersens/2008-12-27-BuiltinWrongType.ll new file mode 100644 index 0000000..5f5da74 --- /dev/null +++ b/test/Analysis/Andersens/2008-12-27-BuiltinWrongType.ll @@ -0,0 +1,19 @@ +; 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 +} |