diff options
Diffstat (limited to 'clang/lib/CodeGen/CGCall.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index eff9fde8393..4cb9ebae3af 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -1528,7 +1528,7 @@ void CodeGenModule::ConstructAttributeList(const CGFunctionInfo &FI, // overall feature validity for the function with the rest of the // attributes on the function. ; - else if (Feature.startswith("mno-")) + else if (Feature.startswith("no-")) FnFeatures.push_back("-" + Feature.split("-").second.str()); else FnFeatures.push_back("+" + Feature.str()); |