| Index: src/IceClFlags.h
|
| diff --git a/src/IceClFlags.h b/src/IceClFlags.h
|
| index 2ce3b4e999b7e592665e43588db093226b78d896..f71d8f434978b2e519ebdd2f64d3be7c98c72664 100644
|
| --- a/src/IceClFlags.h
|
| +++ b/src/IceClFlags.h
|
| @@ -72,6 +72,9 @@ public:
|
| bool getEnableBlockProfile() const { return EnableBlockProfile; }
|
| void setEnableBlockProfile(bool NewValue) { EnableBlockProfile = NewValue; }
|
|
|
| + bool getForceMemIntrinOpt() const { return ForceMemIntrinOpt; }
|
| + void setForceMemIntrinOpt(bool NewValue) { ForceMemIntrinOpt = NewValue; }
|
| +
|
| bool getFunctionSections() const { return FunctionSections; }
|
| void setFunctionSections(bool NewValue) { FunctionSections = NewValue; }
|
|
|
| @@ -241,6 +244,7 @@ private:
|
| bool DisableTranslation;
|
| bool DumpStats;
|
| bool EnableBlockProfile;
|
| + bool ForceMemIntrinOpt;
|
| bool FunctionSections;
|
| bool GenerateUnitTestMessages;
|
| bool PhiEdgeSplit;
|
|
|