diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2022-10-21 14:45:28 -0700 |
---|---|---|
committer | Matt Arsenault <arsenm2@gmail.com> | 2022-10-23 15:16:55 -0700 |
commit | b1e17199052a757e0173e9570e8ce52eec2b0048 (patch) | |
tree | 56dbf6fda96200be36f6aba437c4550b4fb1281a /llvm/tools/llvm-reduce/DeltaManager.cpp | |
parent | 596fdf75d99f83473295e6a619ffac5afa23dd8e (diff) | |
download | llvm-b1e17199052a757e0173e9570e8ce52eec2b0048.zip llvm-b1e17199052a757e0173e9570e8ce52eec2b0048.tar.gz llvm-b1e17199052a757e0173e9570e8ce52eec2b0048.tar.bz2 |
llvm-reduce: Add atomic syncscope reduction
Diffstat (limited to 'llvm/tools/llvm-reduce/DeltaManager.cpp')
-rw-r--r-- | llvm/tools/llvm-reduce/DeltaManager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llvm-reduce/DeltaManager.cpp b/llvm/tools/llvm-reduce/DeltaManager.cpp index 30b4bde..c265667 100644 --- a/llvm/tools/llvm-reduce/DeltaManager.cpp +++ b/llvm/tools/llvm-reduce/DeltaManager.cpp @@ -96,6 +96,7 @@ static cl::list<std::string> DELTA_PASS("module-data", reduceModuleDataDeltaPass) \ DELTA_PASS("opcodes", reduceOpcodesDeltaPass) \ DELTA_PASS("volatile", reduceVolatileInstructionsDeltaPass) \ + DELTA_PASS("syncscopes", reduceAtomicSyncScopesDeltaPass) \ DELTA_PASS("instruction-flags", reduceInstructionFlagsDeltaPass) \ } while (false) |