summaryrefslogtreecommitdiff
path: root/polly/test/ScopInfo/debug_call.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScopInfo/debug_call.ll')
-rw-r--r--polly/test/ScopInfo/debug_call.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/test/ScopInfo/debug_call.ll b/polly/test/ScopInfo/debug_call.ll
index bf597a9506e6..93b5bc520a00 100644
--- a/polly/test/ScopInfo/debug_call.ll
+++ b/polly/test/ScopInfo/debug_call.ll
@@ -2,7 +2,7 @@
;
; Check that the call to dbg_printf is accepted as a debug-function.
;
-declare void @dbg_printf(i8*, ...)
+declare void @dbg_printf(ptr, ...)
define void @func(i32 %n) {
entry:
@@ -14,7 +14,7 @@ for:
br i1 %j.cmp, label %body, label %exit
body:
- call void (i8*, ...) @dbg_printf(i8* null, i32 %j)
+ call void (ptr, ...) @dbg_printf(ptr null, i32 %j)
br label %inc
inc: