| author | |
| committer | |
| log | 5800faa31859afb83d556a67747251e20c3e4b48 |
| tree | e86ca62dea973617addabf88da1fde36d63eb84d |
| parent | cca93908e6d57f18054d153ca01d6869739306f2 |
3 files changed, 2 insertions(+), 2 deletions(-)
src/target.cpp+1-1| ... | @@ -162,6 +162,7 @@ static const Os os_list[] = { | ... | @@ -162,6 +162,7 @@ static const Os os_list[] = { |
| 162 | OsZen, | 162 | OsZen, |
| 163 | }; | 163 | }; |
| 164 | 164 | ||
| 165 | // Coordinate with zig_llvm.h | ||
| 165 | static const ZigLLVM_EnvironmentType environ_list[] = { | 166 | static const ZigLLVM_EnvironmentType environ_list[] = { |
| 166 | ZigLLVM_UnknownEnvironment, | 167 | ZigLLVM_UnknownEnvironment, |
| 167 | 168 | ||
| ... | @@ -182,7 +183,6 @@ static const ZigLLVM_EnvironmentType environ_list[] = { | ... | @@ -182,7 +183,6 @@ static const ZigLLVM_EnvironmentType environ_list[] = { |
| 182 | ZigLLVM_Itanium, | 183 | ZigLLVM_Itanium, |
| 183 | ZigLLVM_Cygnus, | 184 | ZigLLVM_Cygnus, |
| 184 | ZigLLVM_CoreCLR, | 185 | ZigLLVM_CoreCLR, |
| 185 | ZigLLVM_OpenCL, | ||
| 186 | ZigLLVM_Simulator, | 186 | ZigLLVM_Simulator, |
| 187 | }; | 187 | }; |
| 188 | 188 |
src/zig_llvm.cpp+1| ... | @@ -37,6 +37,7 @@ | ... | @@ -37,6 +37,7 @@ |
| 37 | #include <llvm/Transforms/IPO/PassManagerBuilder.h> | 37 | #include <llvm/Transforms/IPO/PassManagerBuilder.h> |
| 38 | #include <llvm/Transforms/IPO/AlwaysInliner.h> | 38 | #include <llvm/Transforms/IPO/AlwaysInliner.h> |
| 39 | #include <llvm/Transforms/Scalar.h> | 39 | #include <llvm/Transforms/Scalar.h> |
| 40 | #include <llvm/Transforms/Utils.h> | ||
| 40 | 41 | ||
| 41 | #include <lld/Common/Driver.h> | 42 | #include <lld/Common/Driver.h> |
| 42 | 43 |
src/zig_llvm.h-1| ... | @@ -376,7 +376,6 @@ enum ZigLLVM_EnvironmentType { | ... | @@ -376,7 +376,6 @@ enum ZigLLVM_EnvironmentType { |
| 376 | ZigLLVM_Itanium, | 376 | ZigLLVM_Itanium, |
| 377 | ZigLLVM_Cygnus, | 377 | ZigLLVM_Cygnus, |
| 378 | ZigLLVM_CoreCLR, | 378 | ZigLLVM_CoreCLR, |
| 379 | ZigLLVM_OpenCL, | ||
| 380 | ZigLLVM_Simulator, | 379 | ZigLLVM_Simulator, |
| 381 | 380 | ||
| 382 | ZigLLVM_LastEnvironmentType = ZigLLVM_Simulator | 381 | ZigLLVM_LastEnvironmentType = ZigLLVM_Simulator |