FWIW, I actually updated malloc.c to work on LLP64 in r168671.
On Nov 28, 2012, at 3:47 , NAKAMURA Takumi <[email protected]> wrote: > John, I propose you please to approve r168303 for release_32. > > It's a suppression to two tests for Windows x64 (and possibly > mingw-w64 x64) to pass clang tests. > See also; http://llvm.org/bugs/show_bug.cgi?id=8833 > > Confirmed with x64|MinSizeRel on visual studio 10. > > ...Takumi > > 2012/11/19 NAKAMURA Takumi <[email protected]>: >> Author: chapuni >> Date: Mon Nov 19 04:00:59 2012 >> New Revision: 168303 >> >> URL: http://llvm.org/viewvc/llvm-project?rev=168303&view=rev >> Log: >> clang/test: Suppress two tests on LLP64 target, Windows x64. >> >> Modified: >> cfe/trunk/test/Analysis/malloc.c >> cfe/trunk/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm >> >> Modified: cfe/trunk/test/Analysis/malloc.c >> URL: >> http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/malloc.c?rev=168303&r1=168302&r2=168303&view=diff >> ============================================================================== >> --- cfe/trunk/test/Analysis/malloc.c (original) >> +++ cfe/trunk/test/Analysis/malloc.c Mon Nov 19 04:00:59 2012 >> @@ -1,4 +1,6 @@ >> // RUN: %clang_cc1 -analyze >> -analyzer-checker=core,alpha.deadcode.UnreachableCode,alpha.core.CastSize,unix.Malloc,debug.ExprInspection >> -analyzer-store=region -verify %s >> +// REQUIRES: LP64 >> + >> #include "Inputs/system-header-simulator.h" >> >> void clang_analyzer_eval(int); >> >> Modified: cfe/trunk/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm >> URL: >> http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm?rev=168303&r1=168302&r2=168303&view=diff >> ============================================================================== >> --- cfe/trunk/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm (original) >> +++ cfe/trunk/test/SemaObjCXX/pointer-to-objc-pointer-conv.mm Mon Nov 19 >> 04:00:59 2012 >> @@ -1,6 +1,8 @@ >> // RUN: %clang_cc1 -fsyntax-only -verify %s >> // expected-no-diagnostics >> >> +// REQUIRES: LP64 >> + >> @interface G >> @end >> >> >> >> _______________________________________________ >> cfe-commits mailing list >> [email protected] >> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits > _______________________________________________ > cfe-commits mailing list > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
