From: Sebastian Redl Date: Mon, 27 Oct 2008 16:34:21 +0000 (+0000) Subject: Fix some invalid casts that are detected by Sema now or soon. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b3f6b5c522308b709a735a789e41b299d905392;p=clang Fix some invalid casts that are detected by Sema now or soon. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58252 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/return-stack-addr.cpp b/test/SemaCXX/return-stack-addr.cpp index c7d1a7f3d6..da68c8d77a 100644 --- a/test/SemaCXX/return-stack-addr.cpp +++ b/test/SemaCXX/return-stack-addr.cpp @@ -93,15 +93,15 @@ int* ret_parameter(int x) { } -int* ret_cpp_static_cast(short x) { - return static_cast(&x); // expected-warning {{address of stack memory}} +void* ret_cpp_static_cast(short x) { + return static_cast(&x); // expected-warning {{address of stack memory}} } int* ret_cpp_reinterpret_cast(double x) { return reinterpret_cast(&x); // expected-warning {{address of stack me}} } -int* ret_cpp_reinterpret_cast_no_warning(double x) { +int* ret_cpp_reinterpret_cast_no_warning(long x) { return reinterpret_cast(x); // no-warning }