Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Feb 27, 2024
1 parent 50d8829 commit b70d9b5
Showing 1 changed file with 22 additions and 13 deletions.
35 changes: 22 additions & 13 deletions enzyme/Enzyme/Enzyme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2798,22 +2798,31 @@ class EnzymeBase {
/* CGSCC */ nullptr);

DenseSet<const char *> Allowed = {
&AAHeapToStack::ID, &AANoCapture::ID,

&AAMemoryBehavior::ID, &AAMemoryLocation::ID, &AANoUnwind::ID,
&AANoSync::ID, &AANoRecurse::ID, &AAWillReturn::ID,
&AANoReturn::ID, &AANonNull::ID, &AANoAlias::ID,
&AADereferenceable::ID, &AAAlign::ID,
&AAHeapToStack::ID,
&AANoCapture::ID,

&AAMemoryBehavior::ID,
&AAMemoryLocation::ID,
&AANoUnwind::ID,
&AANoSync::ID,
&AANoRecurse::ID,
&AAWillReturn::ID,
&AANoReturn::ID,
&AANonNull::ID,
&AANoAlias::ID,
&AADereferenceable::ID,
&AAAlign::ID,
#if LLVM_VERSION_MAJOR < 17
&AAReturnedValues::ID,
&AAReturnedValues::ID,
#endif
&AANoFree::ID, &AANoUndef::ID,
&AANoFree::ID,
&AANoUndef::ID,

//&AAValueSimplify::ID,
//&AAReachability::ID,
//&AAValueConstantRange::ID,
//&AAUndefinedBehavior::ID,
//&AAPotentialValues::ID,
//&AAValueSimplify::ID,
//&AAReachability::ID,
//&AAValueConstantRange::ID,
//&AAUndefinedBehavior::ID,
//&AAPotentialValues::ID,
};

#if LLVM_VERSION_MAJOR >= 15
Expand Down

0 comments on commit b70d9b5

Please sign in to comment.