search for: float4type

Displaying 1 result from an estimated 1 matches for "float4type".

2008 May 22
4
[LLVMdev] SSE intrinsic alignment bug?
...Intrinsics.h" #include "llvm/Instructions.h" #include "llvm/ModuleProvider.h" #include "llvm/ExecutionEngine/JIT.h" #include "llvm/Support/LLVMBuilder.h" using namespace llvm; static Function *createFunction(Module *module) { VectorType *float4Type = VectorType::get(Type::FloatTy, 4); PointerType *float4PointerType = PointerType::get(float4Type, 0); std::vector<const Type*> functionArguments; functionArguments.push_back(float4PointerType); functionArguments.push_back(float4PointerType); FunctionT...