Skip to content

Commit 7f832e6

Browse files
committed
ifdef
1 parent 513b07e commit 7f832e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/coreclr/gc/gc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "gcpriv.h"
2020

21-
#if defined(TARGET_AMD64)
21+
#ifdef TARGET_AMD64
2222
#define USE_VXSORT
2323
#else
2424
#define USE_INTROSORT

src/coreclr/gc/gcsvr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
#define SERVER_GC 1
2222

23-
#if defined(TARGET_AMD64)
23+
#ifdef TARGET_AMD64
2424
#include "vxsort/do_vxsort.h"
2525
#endif
2626

src/coreclr/gc/gcwks.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#undef SERVER_GC
2121
#endif
2222

23-
#if defined(TARGET_AMD64)
23+
#ifdef TARGET_AMD64
2424
#include "vxsort/do_vxsort.h"
2525
#endif
2626

0 commit comments

Comments
 (0)