aboutsummaryrefslogtreecommitdiffstats
path: root/test/Feature/testvarargs.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/testvarargs.ll')
-rw-r--r--test/Feature/testvarargs.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/testvarargs.ll b/test/Feature/testvarargs.ll
index a73b7ec..ccc81f6 100644
--- a/test/Feature/testvarargs.ll
+++ b/test/Feature/testvarargs.ll
@@ -6,7 +6,7 @@
declare i32 @printf(i8*, ...) ;; Prototype for: int __builtin_printf(const char*, ...)
define i32 @testvarar() {
- call i32 (i8*, ...)* @printf( i8* null, i32 12, i8 42 ) ; <i32>:1 [#uses=1]
+ call i32 (i8*, ...) @printf( i8* null, i32 12, i8 42 ) ; <i32>:1 [#uses=1]
ret i32 %1
}