diff options
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp b/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp index 20049e0f2f4..b266b5553ed 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp @@ -160,7 +160,7 @@ static bool isGuardVariableSymbol(llvm::StringRef mangled_symbol, bool check_ms_abi = true) { bool result = mangled_symbol.startswith("_ZGV"); // Itanium ABI guard variable if (check_ms_abi) - result |= mangled_symbol.startswith("@4IA"); // Microsoft ABI + result |= mangled_symbol.endswith("@4IA"); // Microsoft ABI return result; } |