<div dir="ltr">Why is this using an elaborated return type? Can you just remove the "struct"?</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, May 7, 2014 at 12:53 PM, Tobias Grosser <span dir="ltr"><<a href="mailto:tobias@grosser.es" target="_blank">tobias@grosser.es</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class=""><br>
On 07/05/2014 11:48, Daniel Jasper wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Author: djasper<br>
Date: Wed May  7 04:48:30 2014<br>
New Revision: 208176<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=208176&view=rev" target="_blank">http://llvm.org/viewvc/llvm-<u></u>project?rev=208176&view=rev</a><br>
Log:<br>
clang-format: Be slightly more aggressive on single-line functions.<br>
<br>
So that JS functions can also be merged into a single line.<br>
<br>
Before:<br>
   var func = function() {<br>
     return 1;<br>
   };<br>
<br>
After:<br>
   var func = function() { return 1; };<br>
</blockquote>
<br></div>
This change caused the following formatting change in Polly:<br>
<br>
 /// Create the Cloog AST from this program.<br>
-/struct clast_root *Cloog::getClast() { return (clast_root*)ClastRoot; }<br>
+struct clast_root *Cloog::getClast() {<br>
+  return (clast_root *)ClastRoot;<br>
+}<br>
<br>
This does not seem to be intentional.<br>
<br>
Cheers,<br>
Tobias<br>
</blockquote></div><br></div>