http://llvm.org/bugs/show_bug.cgi?id=22756
Chih-Hung Hsieh <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |INVALID --- Comment #1 from Chih-Hung Hsieh <[email protected]> --- Actually the error was not in the movaps instruction but the stack alignment. The test case was reduced from Android Open Source, which has some module not compiled with 16-byte stack alignment. Although the local variable tmp was allocated with 16-byte alignment on the stack, the stack pointer was not. The way to make such case work is to compile with the -mstackrealign flag. -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
