diff options
author | Juneyoung Lee <aqjune@gmail.com> | 2021-10-18 23:03:47 +0900 |
---|---|---|
committer | Juneyoung Lee <aqjune@gmail.com> | 2021-10-18 23:52:46 +0900 |
commit | f193bcc701de8311e9f40730f2187d6df2e8667c (patch) | |
tree | ab5bb46e9846542f8da8b24d0b41651422e27a69 /clang/lib/CodeGen/CGCall.cpp | |
parent | 616a3cc01ef21645898b22839e8e5fb1588e45e8 (diff) | |
download | llvm-f193bcc701de8311e9f40730f2187d6df2e8667c.zip llvm-f193bcc701de8311e9f40730f2187d6df2e8667c.tar.gz llvm-f193bcc701de8311e9f40730f2187d6df2e8667c.tar.bz2 |
Revert D105169 due to the two-stage failure in ASAN
This reverts the following commits:
37ca7a795b277c20c02a218bf44052278c03344b
9aa6c72b92b6c89cc6d23b693257df9af7de2d15
705387c5074bcca36d626882462ebbc2bcc3bed4
8ca4b3ef19fe82d7ad6a6e1515317dcc01b41515
80dba72a669b5416e97a42fd2c2a7bc5a6d3f44a
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 c3b8739..daea09b 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -2255,7 +2255,7 @@ void CodeGenModule::ConstructAttributeList( getLangOpts().Sanitize.has(SanitizerKind::Return); // Determine if the return type could be partially undef - if (!CodeGenOpts.DisableNoundefAttrs && HasStrictReturn) { + if (CodeGenOpts.EnableNoundefAttrs && HasStrictReturn) { if (!RetTy->isVoidType() && RetAI.getKind() != ABIArgInfo::Indirect && DetermineNoUndef(RetTy, getTypes(), DL, RetAI)) RetAttrs.addAttribute(llvm::Attribute::NoUndef); @@ -2390,7 +2390,7 @@ void CodeGenModule::ConstructAttributeList( // Decide whether the argument we're handling could be partially undef bool ArgNoUndef = DetermineNoUndef(ParamType, getTypes(), DL, AI); - if (!CodeGenOpts.DisableNoundefAttrs && ArgNoUndef) + if (CodeGenOpts.EnableNoundefAttrs && ArgNoUndef) Attrs.addAttribute(llvm::Attribute::NoUndef); // 'restrict' -> 'noalias' is done in EmitFunctionProlog when we |