We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a340387 commit 89cd5f0Copy full SHA for 89cd5f0
llvm/include/llvm/CodeGen/MachineModuleInfo.h
@@ -209,7 +209,7 @@ class MachineModuleInfo : public ImmutablePass {
209
/// hasDebugInfo - Returns true if valid debug info is present.
210
///
211
bool hasDebugInfo() const { return DbgInfoAvailable; }
212
- void setDebugInfoAvailability(bool avail) { DbgInfoAvailable = true; }
+ void setDebugInfoAvailability(bool avail) { DbgInfoAvailable = avail; }
213
214
bool callsEHReturn() const { return CallsEHReturn; }
215
void setCallsEHReturn(bool b) { CallsEHReturn = b; }
0 commit comments