aboutsummaryrefslogtreecommitdiffstats
path: root/rs_cc_options.h
diff options
context:
space:
mode:
Diffstat (limited to 'rs_cc_options.h')
-rw-r--r--rs_cc_options.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/rs_cc_options.h b/rs_cc_options.h
index 2905ac9..eff673a 100644
--- a/rs_cc_options.h
+++ b/rs_cc_options.h
@@ -99,6 +99,9 @@ class RSCCOptions {
// The optimization level used in CodeGen, and encoded in emitted bitcode.
llvm::CodeGenOpt::Level mOptimizationLevel;
+ // Display verbose information about the compilation on stdout.
+ bool mVerbose;
+
RSCCOptions() {
mOutputType = slang::Slang::OT_Bitcode;
// Triple/CPU/Features must be hard-coded to our chosen portable ABI.
@@ -112,6 +115,7 @@ class RSCCOptions {
mTargetAPI = RS_VERSION;
mDebugEmission = 0;
mOptimizationLevel = llvm::CodeGenOpt::Aggressive;
+ mVerbose = false;
}
};