Microsoft connect bug: https://connect.microsoft.com/VisualStudio/feedback/details/
1741530
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@251415
91177308-0d34-0410-b5e6-
96231b3b80d8
OriginalDeclForRC = I;
RawCommentAndCacheFlags Raw;
if (RC) {
- Raw.setRaw(RC);
+ // Call order swapped to work around ICE in VS2015 RTM (Release Win32)
+ // https://connect.microsoft.com/VisualStudio/feedback/details/1741530
Raw.setKind(RawCommentAndCacheFlags::FromDecl);
+ Raw.setRaw(RC);
} else
Raw.setKind(RawCommentAndCacheFlags::NoCommentInDecl);
Raw.setOriginalDecl(I);