diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2011-11-17 12:56:10 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2011-11-17 12:56:10 +0000 |
commit | 7ffe4e8b0bba5f5d001a6f88c74f0b8c2ae183d9 (patch) | |
tree | e70ae2a4cd744cfc88e63eb6f364e940459546f8 /polly/lib/Support/ScopHelper.cpp | |
parent | 92a00f818a57d414ca8079200dab69ff9947233c (diff) | |
download | bcm5719-llvm-7ffe4e8b0bba5f5d001a6f88c74f0b8c2ae183d9.tar.gz bcm5719-llvm-7ffe4e8b0bba5f5d001a6f88c74f0b8c2ae183d9.zip |
Fix placement of the '*' that marks a pointer
Suggested by Sebastian Pop.
llvm-svn: 144902
Diffstat (limited to 'polly/lib/Support/ScopHelper.cpp')
-rw-r--r-- | polly/lib/Support/ScopHelper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/Support/ScopHelper.cpp b/polly/lib/Support/ScopHelper.cpp index 5cc096628ff..4a4ea81b193 100644 --- a/polly/lib/Support/ScopHelper.cpp +++ b/polly/lib/Support/ScopHelper.cpp @@ -37,7 +37,7 @@ public: return true; } - bool visitUnknown(const SCEVUnknown* S) { + bool visitUnknown(const SCEVUnknown *S) { Value *V = S->getValue(); // An Instruction defined outside the region is invariant. @@ -57,7 +57,7 @@ public: return true; } - bool visitMulExpr(const SCEVMulExpr* S) { + bool visitMulExpr(const SCEVMulExpr *S) { return visitNAryExpr(S); } |