Parenthesize arguments for mad_hi

Thanks to Jordon Rose <jordan_rose@apple.com> for pointing this out.

llvm-svn: 190310
This commit is contained in:
Aaron Watry 2013-09-09 14:36:21 +00:00
parent a5153cb025
commit dfd8afa02b
1 changed files with 1 additions and 1 deletions

View File

@ -1 +1 @@
#define mad_hi(a, b, c) (mul_hi(a,b)+c)
#define mad_hi(a, b, c) (mul_hi((a),(b))+(c))