Commit 87e5a6c6 by Jim Stichnoth

add todo for ALLOW_LLVM_CL

BUG= R=stichnot@chromium.org Review URL: https://codereview.chromium.org/1520383002 .
parent 0d4fc92b
...@@ -77,6 +77,9 @@ namespace BuildDefs { ...@@ -77,6 +77,9 @@ namespace BuildDefs {
// The ALLOW_* etc. symbols must be #defined to zero or non-zero. // The ALLOW_* etc. symbols must be #defined to zero or non-zero.
constexpr bool dump() { return ALLOW_DUMP; } constexpr bool dump() { return ALLOW_DUMP; }
/// Return true if ALLOW_LLVM_CL is defined as a non-zero value /// Return true if ALLOW_LLVM_CL is defined as a non-zero value
// TODO(stichnot): this ALLOW_LLVM_CL is a TBD option which will
// allow for replacement of llvm:cl command line processor with a
// smaller footprint version for Subzero.
constexpr bool llvmCl() { return ALLOW_LLVM_CL; } constexpr bool llvmCl() { return ALLOW_LLVM_CL; }
/// Return true if ALLOW_LLVM_IR is defined as a non-zero value /// Return true if ALLOW_LLVM_IR is defined as a non-zero value
constexpr bool llvmIr() { return ALLOW_LLVM_IR; } constexpr bool llvmIr() { return ALLOW_LLVM_IR; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment