[polly] r208191 - Remove unnecessary struct in return type
Tobias Grosser
tobias at grosser.es
Wed May 7 04:23:36 PDT 2014
Author: grosser
Date: Wed May 7 06:23:35 2014
New Revision: 208191
URL: http://llvm.org/viewvc/llvm-project?rev=208191&view=rev
Log:
Remove unnecessary struct in return type
Modified:
polly/trunk/lib/CodeGen/Cloog.cpp
Modified: polly/trunk/lib/CodeGen/Cloog.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/Cloog.cpp?rev=208191&r1=208190&r2=208191&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/Cloog.cpp (original)
+++ polly/trunk/lib/CodeGen/Cloog.cpp Wed May 7 06:23:35 2014
@@ -63,7 +63,7 @@ public:
void pprint(llvm::raw_ostream &OS);
/// Create the Cloog AST from this program.
- struct clast_root *getClast();
+ clast_root *getClast();
};
Cloog::Cloog(Scop *Scop) : S(Scop) {
@@ -138,7 +138,7 @@ void Cloog::pprint(raw_ostream &OS) {
}
/// Create the Cloog AST from this program.
-struct clast_root *Cloog::getClast() { return (clast_root *)ClastRoot; }
+clast_root *Cloog::getClast() { return (clast_root *)ClastRoot; }
void Cloog::buildCloogOptions() {
Options = cloog_options_malloc(State);
More information about the llvm-commits
mailing list