diff options
Diffstat (limited to 'clang/test/Analysis/casts.c')
-rw-r--r-- | clang/test/Analysis/casts.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/clang/test/Analysis/casts.c b/clang/test/Analysis/casts.c index dd14b8a6e30..45ce1940dfa 100644 --- a/clang/test/Analysis/casts.c +++ b/clang/test/Analysis/casts.c @@ -213,14 +213,3 @@ void no_crash_on_symsym_cast_to_long() { } #endif - -char no_crash_SymbolCast_of_float_type_aux(int *p) { - *p += 1; - return *p; -} - -void no_crash_SymbolCast_of_float_type() { - extern float x; - char (*f)() = no_crash_SymbolCast_of_float_type_aux; - f(&x); -} |