From 3d7afbb945b04f41800c1074eda2e1fb97524033 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Wed, 26 Feb 2014 20:38:24 +0000 Subject: Undef helper macros after using them. llvm-svn: 202298 --- compiler-rt/lib/builtins/fp_lib.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compiler-rt/lib/builtins/fp_lib.h') diff --git a/compiler-rt/lib/builtins/fp_lib.h b/compiler-rt/lib/builtins/fp_lib.h index 661119ae412..31714b194fb 100644 --- a/compiler-rt/lib/builtins/fp_lib.h +++ b/compiler-rt/lib/builtins/fp_lib.h @@ -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. -- cgit v1.2.3