Simplify code by converting multiple places that were manually concatenating 128...
authorCraig Topper <craig.topper@gmail.com>
Sun, 22 Apr 2012 18:15:59 +0000 (18:15 +0000)
committerCraig Topper <craig.topper@gmail.com>
Sun, 22 Apr 2012 18:15:59 +0000 (18:15 +0000)
commit4c7972d6385ff17574d76d0fdda5a1a5f53d49e8
tree966e90b20d8b89197b1363d9cc4385a058b7d2ff
parentdd9047815c765210e81755c320e34fe010dfe4a7
Simplify code by converting multiple places that were manually concatenating 128-bit vectors to use either CONCAT_VECTORS or a helper function. CONCAT_VECTORS will itself be lowered to the same pattern as before. The helper function is needed for concats of BUILD_VECTORs since getNode(CONCAT_VECTORS) will just return a large BUILD_VECTOR and we may be trying to lower large BUILD_VECTORS when this occurs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155318 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/X86ISelLowering.cpp