diff options
author | hyeongyu kim <gusrb406@snu.ac.kr> | 2022-01-16 18:53:11 +0900 |
---|---|---|
committer | hyeongyu kim <gusrb406@snu.ac.kr> | 2022-01-16 18:54:17 +0900 |
commit | 1b1c8d83d3567a60280291c0adb95d1d60335509 (patch) | |
tree | d3b8732dd341eae61630b8fa52521dbba34769a5 /clang/lib/CodeGen/CGCall.cpp | |
parent | e7c8cd4a930465edd6c0ecbf3ad3119737988941 (diff) | |
download | llvm-1b1c8d83d3567a60280291c0adb95d1d60335509.zip llvm-1b1c8d83d3567a60280291c0adb95d1d60335509.tar.gz llvm-1b1c8d83d3567a60280291c0adb95d1d60335509.tar.bz2 |
[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default
Turning on `enable_noundef_analysis` flag allows better codegen by removing freeze instructions.
I modified clang by renaming `enable_noundef_analysis` flag to `disable-noundef-analysis` and turning it off by default.
Test updates are made as a separate patch: D108453
Reviewed By: eugenis
Differential Revision: https://reviews.llvm.org/D105169
Diffstat (limited to 'clang/lib/CodeGen/CGCall.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGCall.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index cd05fa7..cc6047ff 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -2243,7 +2243,7 @@ void CodeGenModule::ConstructAttributeList(StringRef Name, getLangOpts().Sanitize.has(SanitizerKind::Return); // Determine if the return type could be partially undef - if (CodeGenOpts.EnableNoundefAttrs && HasStrictReturn) { + if (!CodeGenOpts.DisableNoundefAttrs && HasStrictReturn) { if (!RetTy->isVoidType() && RetAI.getKind() != ABIArgInfo::Indirect && DetermineNoUndef(RetTy, getTypes(), DL, RetAI)) RetAttrs.addAttribute(llvm::Attribute::NoUndef); @@ -2377,7 +2377,7 @@ void CodeGenModule::ConstructAttributeList(StringRef Name, } // Decide whether the argument we're handling could be partially undef - if (CodeGenOpts.EnableNoundefAttrs && + if (!CodeGenOpts.DisableNoundefAttrs && DetermineNoUndef(ParamType, getTypes(), DL, AI)) { Attrs.addAttribute(llvm::Attribute::NoUndef); } |