Add support for quadword vector instructions added in POWER8.
In order to implement these instructions it is necessary to introduce the v1i128 vector type in LLVM. The PowerPC ABI specifies parameters of type v1i128 are to be passed in a single vector register, while parameters of type i128 are passed in pairs of GPRs. Thus it is necessary to be able to differentiate between v1i128 and i128 in LLVM.
There will be a subsequent patch following soon that uses the v1i128 type for the add and subtract quadword instructions introduced in POWER8.
Don't add blank line.