aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/2003-11-03-VarargsCallBug.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/InstCombine/2003-11-03-VarargsCallBug.ll')
-rw-r--r--test/Transforms/InstCombine/2003-11-03-VarargsCallBug.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/2003-11-03-VarargsCallBug.ll b/test/Transforms/InstCombine/2003-11-03-VarargsCallBug.ll
index c1692f7..aff39f8 100644
--- a/test/Transforms/InstCombine/2003-11-03-VarargsCallBug.ll
+++ b/test/Transforms/InstCombine/2003-11-03-VarargsCallBug.ll
@@ -7,7 +7,7 @@ declare void @foo(...)
define void @test(i64 %X) {
%Y = inttoptr i64 %X to i32* ; <i32*> [#uses=1]
- call void (...)* @foo( i32* %Y )
+ call void (...) @foo( i32* %Y )
ret void
}