Commit f34c256c authored by mru's avatar mru

improved stack misalignment warning


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7275 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 68b06638
......@@ -3809,10 +3809,9 @@ int ff_check_alignment(void){
if(!did_fail){
#if defined(HAVE_MMX) || defined(HAVE_ALTIVEC)
av_log(NULL, AV_LOG_ERROR,
"Compiler did not align stack variables, libavcodec has been misscompiled\n"
"and will possible be very slow or may crash, this is not a bug in the\n"
"application but in the compiler\n"
"so reporting it anywhere but to the compiler maintainers is senseless!\n");
"Compiler did not align stack variables. Libavcodec has been miscompiled\n"
"and may be very slow or crash. This is not a bug in libavcodec,\n"
"but in the compiler. Do not report crashes to FFmpeg developers.\n");
#endif
did_fail=1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment