From: Benjamin Kramer Date: Thu, 18 Mar 2010 19:34:06 +0000 (+0000) Subject: Fix a name clash that was breaking MSVC builds. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d720712f670d98a9128991f2261e58808ec96c12;p=oota-llvm.git Fix a name clash that was breaking MSVC builds. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98852 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/SmallVector.h b/include/llvm/ADT/SmallVector.h index c4507a917f3..c2afb7e681d 100644 --- a/include/llvm/ADT/SmallVector.h +++ b/include/llvm/ADT/SmallVector.h @@ -61,7 +61,7 @@ protected: #ifdef __GNUC__ char X __attribute__((aligned)); #else - union U { + union { double D; long double LD; long long L;