summaryrefslogtreecommitdiff
path: root/clrdefinitions.cmake
diff options
context:
space:
mode:
author정동헌/Common Platform Lab(SR)/Principal Engineer/삼성전자 <dheon.jung@samsung.com>2020-06-23 07:44:28 +0900
committer이형주/Common Platform Lab(SR)/Staff Engineer/삼성전자 <leee.lee@samsung.com>2020-06-23 07:44:28 +0900
commit982bdae7fce02ab9901b051109dacf060a5d1dfb (patch)
tree4330b51723682e87b99744ff3aaa43a53b301857 /clrdefinitions.cmake
parent188dc96b125236b447094b156e84442defde6cf2 (diff)
downloadcoreclr-982bdae7fce02ab9901b051109dacf060a5d1dfb.tar.gz
coreclr-982bdae7fce02ab9901b051109dacf060a5d1dfb.tar.bz2
coreclr-982bdae7fce02ab9901b051109dacf060a5d1dfb.zip
[Tizen] Force Inline for Generic Methods (#224)submit/tizen/20200622.225420accepted/tizen/unified/20200623.124116
This patch enables more generic method inlining for methods which are not compiled by NI.
Diffstat (limited to 'clrdefinitions.cmake')
-rw-r--r--clrdefinitions.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/clrdefinitions.cmake b/clrdefinitions.cmake
index 4d366e1d7e..9120caddcb 100644
--- a/clrdefinitions.cmake
+++ b/clrdefinitions.cmake
@@ -258,3 +258,7 @@ endif(WIN32)
if(CLR_CMAKE_PLATFORM_DARWIN)
add_definitions(-DFEATURE_WRITEBARRIER_COPY)
endif(CLR_CMAKE_PLATFORM_DARWIN)
+
+if(TIZEN_AGGRESSIVE_INLINING_GENERIC)
+ add_definitions(-DTIZEN_AGGRESSIVE_INLINING_GENERIC)
+endif(TIZEN_AGGRESSIVE_INLINING_GENERIC)