From: Nemanja Ivanovic Date: Sun, 5 Jul 2015 10:54:10 +0000 (+0000) Subject: Add the missing return statements from revision 241399. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3900a7cd01ed4c4c023590d352fd257ce5d3b072;p=clang Add the missing return statements from revision 241399. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241405 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/altivec.h b/lib/Headers/altivec.h index 61ad32054d..37e695f045 100644 --- a/lib/Headers/altivec.h +++ b/lib/Headers/altivec.h @@ -3712,14 +3712,15 @@ static void __ATTRS_o_ai vec_mtvscr(vector float __a) { } /* vec_mul */ + static vector float __ATTRS_o_ai vec_mul(vector float __a, vector float __b) { - __a * __b; + return __a * __b; } #ifdef __VSX__ static vector double __ATTRS_o_ai vec_mul(vector double __a, vector double __b) { - __a * __b; + return __a * __b; } #endif