Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Unified Diff: Makefile.standalone

Issue 696383004: Disable Subzero IR generation for performance testing. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pydir/run-llvm2ice.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 29fcef942b90d322a5f0137f63f0ae0c43f248f2..b5b29138024114ee427b6d2d9855b4663a30a7ef 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -51,10 +51,12 @@ CXX_DEFINES =
ifdef MINIMAL
OBJDIR := $(OBJDIR)+Min
CXX_DEFINES += -DALLOW_TEXT_ASM=0 -DALLOW_DUMP=0 -DALLOW_LLVM_CL=0 \
- -DALLOW_LLVM_IR=0 -DALLOW_LLVM_IR_AS_INPUT=0
+ -DALLOW_LLVM_IR=0 -DALLOW_LLVM_IR_AS_INPUT=0 \
+ -DALLOW_DISABLE_IR_GEN=0
else
CXX_DEFINES += -DALLOW_TEXT_ASM=1 -DALLOW_DUMP=1 -DALLOW_LLVM_CL=1 \
- -DALLOW_LLVM_IR=1 -DALLOW_LLVM_IR_AS_INPUT=1
+ -DALLOW_LLVM_IR=1 -DALLOW_LLVM_IR_AS_INPUT=1 \
+ -DALLOW_DISABLE_IR_GEN=1
endif
ifdef NOASSERT
« no previous file with comments | « no previous file | pydir/run-llvm2ice.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698