Fix placement of the '*' that marks a pointer
Suggested by Sebastian Pop.
llvm-svn: 144902
diff --git a/polly/lib/CodeGeneration.cpp b/polly/lib/CodeGeneration.cpp
index 51fe717..c677cc6 100644
--- a/polly/lib/CodeGeneration.cpp
+++ b/polly/lib/CodeGeneration.cpp
@@ -158,7 +158,7 @@
return S.getRegion();
}
- Value* makeVectorOperand(Value *operand, int vectorWidth) {
+ Value *makeVectorOperand(Value *operand, int vectorWidth) {
if (operand->getType()->isVectorTy())
return operand;
@@ -176,7 +176,7 @@
return Builder.CreateShuffleVector(vector, vector, splatVector);
}
- Value* getOperand(const Value *oldOperand, ValueMapT &BBMap,
+ Value *getOperand(const Value *oldOperand, ValueMapT &BBMap,
ValueMapT *VectorMap = 0) {
const Instruction *OpInst = dyn_cast<Instruction>(oldOperand);
@@ -912,7 +912,7 @@
}
/// @brief Add a new definition of an openmp subfunction.
- Function* addOpenMPSubfunction(Module *M) {
+ Function *addOpenMPSubfunction(Module *M) {
Function *F = Builder.GetInsertBlock()->getParent();
const std::string &Name = F->getNameStr() + ".omp_subfn";
@@ -1608,6 +1608,6 @@
INITIALIZE_PASS_END(CodeGeneration, "polly-codegen",
"Polly - Create LLVM-IR form SCoPs", false, false)
-Pass* polly::createCodeGenerationPass() {
+Pass *polly::createCodeGenerationPass() {
return new CodeGeneration();
}