diff options
Diffstat (limited to 'llvm/test/Feature')
-rw-r--r-- | llvm/test/Feature/aliases.ll | 2 | ||||
-rw-r--r-- | llvm/test/Feature/attributes.ll | 2 | ||||
-rw-r--r-- | llvm/test/Feature/paramattrs.ll | 2 | ||||
-rw-r--r-- | llvm/test/Feature/testvarargs.ll | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Feature/aliases.ll b/llvm/test/Feature/aliases.ll index f03e3cff63d..b3b9ceba527 100644 --- a/llvm/test/Feature/aliases.ll +++ b/llvm/test/Feature/aliases.ll @@ -35,7 +35,7 @@ entry: %tmp0 = load i32, i32* @bar_i %tmp2 = call i32 @foo_f() %tmp3 = add i32 %tmp, %tmp2 - %tmp4 = call %FunTy* @bar_f() + %tmp4 = call %FunTy @bar_f() %tmp5 = add i32 %tmp3, %tmp4 %tmp6 = add i32 %tmp1, %tmp5 %tmp7 = add i32 %tmp6, %tmp0 diff --git a/llvm/test/Feature/attributes.ll b/llvm/test/Feature/attributes.ll index 0392d863213..cae3cbfe79b 100644 --- a/llvm/test/Feature/attributes.ll +++ b/llvm/test/Feature/attributes.ll @@ -6,7 +6,7 @@ define void @foo() #0 { entry: - %call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([14 x i8], [14 x i8]* @.str, i32 0, i32 0)) + %call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([14 x i8], [14 x i8]* @.str, i32 0, i32 0)) ret void } diff --git a/llvm/test/Feature/paramattrs.ll b/llvm/test/Feature/paramattrs.ll index 9860f5a6a5b..d24791ee673 100644 --- a/llvm/test/Feature/paramattrs.ll +++ b/llvm/test/Feature/paramattrs.ll @@ -14,7 +14,7 @@ declare void @exit(i32) noreturn nounwind define i32 @main(i32 inreg %argc, i8 ** inreg %argv) nounwind { %val = trunc i32 %argc to i16 - %res1 = call signext i16 (i16 ) *@test(i16 signext %val) + %res1 = call signext i16 (i16 )@test(i16 signext %val) %two = add i16 %res1, %res1 %res2 = call zeroext i8 @test2(i16 zeroext %two ) %retVal = sext i16 %two to i32 diff --git a/llvm/test/Feature/testvarargs.ll b/llvm/test/Feature/testvarargs.ll index a73b7ecd7d6..ccc81f6d899 100644 --- a/llvm/test/Feature/testvarargs.ll +++ b/llvm/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 } |