Linalg's promotion pass was only supporting f32 buffers due to how the
zero value was build for the fill operation.
Moreover, promoteSubViewOperands was returning a vector with one entry
per float subview while omitting integer subviews. For a program
with only integer subviews the return vector would be of size 0.
However, promoteSubViewsOperands would try to access a non zero
number of entries of this vector, resulting in a sefgault.
Remove trivial braces.