aboutsummaryrefslogtreecommitdiffstats
path: root/test/LTO/X86
diff options
context:
space:
mode:
Diffstat (limited to 'test/LTO/X86')
-rw-r--r--test/LTO/X86/keep-used-puts-during-instcombine.ll2
-rw-r--r--test/LTO/X86/no-undefined-puts-when-implemented.ll2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/LTO/X86/keep-used-puts-during-instcombine.ll b/test/LTO/X86/keep-used-puts-during-instcombine.ll
index 74f577d..2624947 100644
--- a/test/LTO/X86/keep-used-puts-during-instcombine.ll
+++ b/test/LTO/X86/keep-used-puts-during-instcombine.ll
@@ -16,7 +16,7 @@ target triple = "x86_64-apple-darwin11"
define i32 @uses_printf(i32 %i) {
entry:
%s = getelementptr [13 x i8], [13 x i8]* @str, i64 0, i64 0
- call i32 (i8*, ...)* @printf(i8* %s)
+ call i32 (i8*, ...) @printf(i8* %s)
ret i32 0
}
diff --git a/test/LTO/X86/no-undefined-puts-when-implemented.ll b/test/LTO/X86/no-undefined-puts-when-implemented.ll
index 7054609..132ec67 100644
--- a/test/LTO/X86/no-undefined-puts-when-implemented.ll
+++ b/test/LTO/X86/no-undefined-puts-when-implemented.ll
@@ -21,7 +21,7 @@ entry:
define i32 @uses_printf(i32 %i) {
entry:
%s = getelementptr [13 x i8], [13 x i8]* @str, i64 0, i64 0
- call i32 (i8*, ...)* @printf(i8* %s)
+ call i32 (i8*, ...) @printf(i8* %s)
ret i32 0
}