Undef helper macros after using them.

llvm-svn: 202298
This commit is contained in:
Joerg Sonnenberger 2014-02-26 20:38:24 +00:00
parent 9d09e2fe90
commit 3d7afbb945
1 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,8 @@ static inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) {
// Sum terms contributing to hi with the carry from lo
*hi = hiWord(plohi) + hiWord(philo) + hiWord(r1) + phihi;
}
#undef loWord
#undef hiWord
#else
#error Either SINGLE_PRECISION or DOUBLE_PRECISION must be defined.