nir: Implement mul_high lowering for bit sizes other than 32
[mesa.git] / src / compiler / glsl / ast_expr.cpp
index e624d11cf3b271844fbe3c6c35157d188d252d49..1fd5b6e642d0874d413691442788cb6584b8d0e7 100644 (file)
@@ -79,7 +79,7 @@ ast_expression::operator_string(enum ast_operators op)
 
 
 ast_expression_bin::ast_expression_bin(int oper, ast_expression *ex0,
-                                      ast_expression *ex1) :
+                                       ast_expression *ex1) :
    ast_expression(oper, ex0, ex1, NULL)
 {
    assert((oper >= ast_plus) && (oper <= ast_logic_not));