Chromium Code Reviews| Index: src/IceClFlags.h |
| diff --git a/src/IceClFlags.h b/src/IceClFlags.h |
| index 517c77fc63f1efd9aad19a967740481ead658074..4a38fad9d84338a7897a3bd4d676994bef19cb46 100644 |
| --- a/src/IceClFlags.h |
| +++ b/src/IceClFlags.h |
| @@ -100,6 +100,9 @@ public: |
| bool getUseSandboxing() const { return UseSandboxing; } |
| void setUseSandboxing(bool NewValue) { UseSandboxing = NewValue; } |
| + bool getEnableBlockProfile() const { return EnableBlockProfile; } |
|
Jim Stichnoth
2015/06/08 23:45:31
Sort these alphabetically within the bool section.
John
2015/06/09 15:36:18
Done.
|
| + void setEnableBlockProfile(bool NewValue) { EnableBlockProfile = NewValue; } |
| + |
| // Enum and integer accessors. |
| OptLevel getOptLevel() const { return Opt; } |
| void setOptLevel(OptLevel NewValue) { Opt = NewValue; } |
| @@ -191,6 +194,7 @@ private: |
| bool SubzeroTimingEnabled; |
| bool TimeEachFunction; |
| bool UseSandboxing; |
| + bool EnableBlockProfile; |
| OptLevel Opt; |
| FileType OutFileType; |