mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 579493 - ANGLE fails to compile on mingw r=vladimir
--HG-- extra : rebase_source : 52992f80a118d5fe124a285ead0a1e4fb53f7df6
This commit is contained in:
parent
406336b84f
commit
1a2d4451d7
@ -1,6 +1,6 @@
|
||||
This is the ANGLE project, from http://code.google.com/p/angleproject/.
|
||||
|
||||
Current revision: r342
|
||||
Current revision: r343
|
||||
|
||||
Local patches:
|
||||
angle-nspr.patch - use NSPR for TLS
|
||||
|
@ -83,15 +83,15 @@ static int byte_scan(InputSrc *, yystypepp * yylvalpp);
|
||||
|
||||
#define EOL_SY '\n'
|
||||
|
||||
#if defined(_WIN32)
|
||||
#if defined(_MSC_VER)
|
||||
#define DBG_BREAKPOINT() __asm int 3
|
||||
#elif defined(_M_AMD64)
|
||||
#elif defined(_M_AMD64)
|
||||
#define DBG_BREAKPOINT() assert(!"Dbg_Breakpoint");
|
||||
#else
|
||||
#else
|
||||
#define DBG_BREAKPOINT()
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32) && !defined(_M_AMD64)
|
||||
#if defined(_MSC_VER) && !defined(_M_AMD64)
|
||||
__int64 RDTSC ( void ) {
|
||||
|
||||
__int64 v;
|
||||
|
Loading…
Reference in New Issue
Block a user