diff options
author | Wesley Peck <peckw@wesleypeck.com> | 2011-01-05 17:01:57 +0000 |
---|---|---|
committer | Wesley Peck <peckw@wesleypeck.com> | 2011-01-05 17:01:57 +0000 |
commit | 4351bfbd4d4a2f383b4860016da14ce40b0278f9 (patch) | |
tree | 906668b5576aa7fa9cfeda2532da0879fa5129f9 /include/llvm/CodeGen/MachineModuleInfo.h | |
parent | f94f7325ad28f804eb87463821b0a89f7bf08612 (diff) |
Fix small bug in setDebugInfoAvailability.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineModuleInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineModuleInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineModuleInfo.h b/include/llvm/CodeGen/MachineModuleInfo.h index 9ea27b4b02..6bc80b099f 100644 --- a/include/llvm/CodeGen/MachineModuleInfo.h +++ b/include/llvm/CodeGen/MachineModuleInfo.h @@ -209,7 +209,7 @@ public: /// hasDebugInfo - Returns true if valid debug info is present. /// bool hasDebugInfo() const { return DbgInfoAvailable; } - void setDebugInfoAvailability(bool avail) { DbgInfoAvailable = true; } + void setDebugInfoAvailability(bool avail) { DbgInfoAvailable = avail; } bool callsEHReturn() const { return CallsEHReturn; } void setCallsEHReturn(bool b) { CallsEHReturn = b; } |