[llvm] r207943 - CodeGen: correct memset emittance for WoA
Anton Korobeynikov
anton at korobeynikov.info
Sun May 4 22:36:00 PDT 2014
> // Use default for non-AAPCS (or MachO) subtargets
> - if (!Subtarget->isAAPCS_ABI() || Subtarget->isTargetMachO())
> + if (!Subtarget->isAAPCS_ABI() || Subtarget->isTargetMachO() ||
> + Subtarget->isTargetWindows())
> return SDValue();
If it does not conform to EABI, the it should be handled by
!isAAPCS_ABI() case here. Why does it return true for you?
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
More information about the llvm-commits
mailing list