[CodeGen] update code generation optimization level(nfc) (#168190)

This commit is contained in:
zhangtianhao6 2025-11-20 14:54:42 +08:00 committed by GitHub
parent 8608344778
commit fde2aadb80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,7 +82,7 @@ namespace llvm {
enum class CodeGenOptLevel {
None = 0, ///< -O0
Less = 1, ///< -O1
Default = 2, ///< -O2, -Os
Default = 2, ///< -O2, -Os, -Oz
Aggressive = 3 ///< -O3
};