| Index: src/IceClFlags.h
|
| diff --git a/src/IceClFlags.h b/src/IceClFlags.h
|
| index 517c77fc63f1efd9aad19a967740481ead658074..7df697303c5d6a5d77cae079e25f88a770743aaf 100644
|
| --- a/src/IceClFlags.h
|
| +++ b/src/IceClFlags.h
|
| @@ -65,6 +65,9 @@ public:
|
| bool getDumpStats() const { return ALLOW_DUMP && DumpStats; }
|
| void setDumpStats(bool NewValue) { DumpStats = NewValue; }
|
|
|
| + bool getEnableBlockProfile() const { return EnableBlockProfile; }
|
| + void setEnableBlockProfile(bool NewValue) { EnableBlockProfile = NewValue; }
|
| +
|
| bool getFunctionSections() const { return FunctionSections; }
|
| void setFunctionSections(bool NewValue) { FunctionSections = NewValue; }
|
|
|
| @@ -182,6 +185,7 @@ private:
|
| bool DisableIRGeneration;
|
| bool DisableTranslation;
|
| bool DumpStats;
|
| + bool EnableBlockProfile;
|
| bool FunctionSections;
|
| bool GenerateUnitTestMessages;
|
| bool PhiEdgeSplit;
|
|
|