Skip to content

Avoid using uninitialized inputs and if available, use slightly more efficient...

Christoph Hertzberg requested to merge chhtz/eigen:more_efficient_pset1 into master

Reference issue

This came up when reviewing !451 (closed)

What does this implement/fix?

By using movsd instead of movlps this avoids having to suppress a -Wunitialized warning (and removes a false dependency) With SSE3 this uses the more efficient movddup instruction

Merge request reports