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

Unified Diff: Makefile.standalone

Issue 1278173009: Inline memove for small constant sizes and refactor memcpy and memset. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix memmove and add tests Created 5 years, 4 months 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 | crosstest/mem_intrin.h » ('j') | src/IceTargetLoweringX86Base.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 0248a1137451c3bb3f20b992c482a55333f7dfac..e8efef31565a704d4f36403884c8fd6b5b0d9c7c 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -361,8 +361,13 @@ check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime
$(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output
endif
+ifdef DEBUG
check-unit: $(OBJDIR)/run_unittests
$(OBJDIR)/run_unittests
+else
+check-unit:
+ @echo "Run with DEBUG=1 lest your machine perish."
jvoung (off chromium) 2015/08/18 17:18:22 Thanks =) Would it make sense to put this by the
ascull 2015/08/18 18:38:00 Done.
+endif
check: check-lit check-unit check-xtest
« no previous file with comments | « no previous file | crosstest/mem_intrin.h » ('j') | src/IceTargetLoweringX86Base.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698