Chromium Code Reviews| Index: src/IceClFlags.h |
| diff --git a/src/IceClFlags.h b/src/IceClFlags.h |
| index 533f23e3e509cfc5529ebee368fc7e11a4fdb994..d89186c886e3502746686a6ddad6707664b4ed44 100644 |
| --- a/src/IceClFlags.h |
| +++ b/src/IceClFlags.h |
| @@ -181,6 +181,11 @@ public: |
| /// Set ClFlags::TimeEachFunction to a new value |
| void setTimeEachFunction(bool NewValue) { TimeEachFunction = NewValue; } |
| + /// Get the value of ClFlags::UseNonsfi |
| + bool getUseNonsfi() const { return UseNonsfi; } |
| + /// Set ClFlags::UseNonsfi to a new value |
| + void setUseNonsfi(bool NewValue) { UseNonsfi = NewValue; } |
| + |
| /// Get the value of ClFlags::UseSandboxing |
| bool getUseSandboxing() const { return UseSandboxing; } |
| /// Set ClFlags::UseSandboxing to a new value |
| @@ -415,6 +420,8 @@ private: |
| bool SubzeroTimingEnabled; |
| /// see anonymous_namespace{IceClFlags.cpp}::TimeEachFunction |
| bool TimeEachFunction; |
| + /// see anonymous_namespace{IceClFlags.cpp}::UseNonsfi |
|
John
2015/12/22 15:44:38
It just caught my eyes, but these doxygen comments
Jim Stichnoth
2015/12/28 07:54:07
Acknowledged.
:)
|
| + bool UseNonsfi; |
| /// see anonymous_namespace{IceClFlags.cpp}::UseSandboxing |
| bool UseSandboxing; |
| /// see anonymous_namespace{IceClFlags.cpp}::OLevel |