From 2752284f4b13e4a7ecc8731a0dfc8a977c34acdb Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sat, 18 Jun 2011 17:26:41 -0700 Subject: [PATCH] Add TIME_LLVM_PASSES flag to the Makefile --- Makefile.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.in b/Makefile.in index d693d7d5100b..cae6155933c5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -24,6 +24,9 @@ endif ifdef TIME_PASSES CFG_RUSTC_FLAGS += --time-passes endif +ifdef TIME_LLVM_PASSES + CFG_RUSTC_FLAGS += --time-llvm-passes +endif ifdef NO_TYPESTATE CFG_RUSTC_FLAGS += --no-typestate endif