Commit fb12f356 by Dmitri Makarov Committed by masahi

Fix build for llvm newer than 9.0 (#4515)

parent 41959ed2
...@@ -6,9 +6,9 @@ ...@@ -6,9 +6,9 @@
* to you under the Apache License, Version 2.0 (the * to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance * "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at * with the License. You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, * Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an * software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
...@@ -276,7 +276,7 @@ runtime::Module BuildAMDGPU(Array<LoweredFunc> funcs, std::string target) { ...@@ -276,7 +276,7 @@ runtime::Module BuildAMDGPU(Array<LoweredFunc> funcs, std::string target) {
<< "Cannot emit target CGFT_ObjectFile"; << "Cannot emit target CGFT_ObjectFile";
#else #else
CHECK(tm->addPassesToEmitFile( CHECK(tm->addPassesToEmitFile(
pass, destObj, nullptr, llvm::TargetMachine::CGFT_ObjectFile) == 0) pass, destObj, nullptr, llvm::CGFT_ObjectFile) == 0)
<< "Cannot emit target CGFT_ObjectFile"; << "Cannot emit target CGFT_ObjectFile";
#endif #endif
pass.run(*mObj); pass.run(*mObj);
...@@ -293,7 +293,7 @@ runtime::Module BuildAMDGPU(Array<LoweredFunc> funcs, std::string target) { ...@@ -293,7 +293,7 @@ runtime::Module BuildAMDGPU(Array<LoweredFunc> funcs, std::string target) {
<< "Cannot emit target CGFT_AssemblyFile"; << "Cannot emit target CGFT_AssemblyFile";
#else #else
CHECK(tm->addPassesToEmitFile(passAsm, destAsm, nullptr, CHECK(tm->addPassesToEmitFile(passAsm, destAsm, nullptr,
llvm::TargetMachine::CGFT_AssemblyFile) == 0) llvm::CGFT_AssemblyFile) == 0)
<< "Cannot emit target CGFT_AssemblyFile"; << "Cannot emit target CGFT_AssemblyFile";
#endif #endif
passAsm.run(*mAsm); passAsm.run(*mAsm);
......
...@@ -6,9 +6,9 @@ ...@@ -6,9 +6,9 @@
* to you under the Apache License, Version 2.0 (the * to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance * "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at * with the License. You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, * Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an * software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
...@@ -245,7 +245,7 @@ runtime::Module BuildNVPTX(Array<LoweredFunc> funcs, std::string target) { ...@@ -245,7 +245,7 @@ runtime::Module BuildNVPTX(Array<LoweredFunc> funcs, std::string target) {
<< "Cannot emit target CGFT_ObjectFile"; << "Cannot emit target CGFT_ObjectFile";
#else #else
CHECK(tm->addPassesToEmitFile( CHECK(tm->addPassesToEmitFile(
pass, dest_ptx, nullptr, llvm::TargetMachine::CGFT_AssemblyFile) == 0) pass, dest_ptx, nullptr, llvm::CGFT_AssemblyFile) == 0)
<< "Cannot emit target CGFT_ObjectFile"; << "Cannot emit target CGFT_ObjectFile";
#endif #endif
pass.run(*module); pass.run(*module);
......
...@@ -97,7 +97,7 @@ class LLVMModuleNode final : public runtime::ModuleNode { ...@@ -97,7 +97,7 @@ class LLVMModuleNode final : public runtime::ModuleNode {
<< "Cannot emit target CGFT_ObjectFile"; << "Cannot emit target CGFT_ObjectFile";
#else #else
CHECK(tm_->addPassesToEmitFile( CHECK(tm_->addPassesToEmitFile(
pass, dest, nullptr, llvm::TargetMachine::CGFT_ObjectFile) == 0) pass, dest, nullptr, llvm::CGFT_ObjectFile) == 0)
<< "Cannot emit target CGFT_ObjectFile"; << "Cannot emit target CGFT_ObjectFile";
#endif #endif
pass.run(*m); pass.run(*m);
...@@ -119,7 +119,7 @@ class LLVMModuleNode final : public runtime::ModuleNode { ...@@ -119,7 +119,7 @@ class LLVMModuleNode final : public runtime::ModuleNode {
<< "Cannot emit target CGFT_AssemblyFile"; << "Cannot emit target CGFT_AssemblyFile";
#else #else
CHECK(tm_->addPassesToEmitFile( CHECK(tm_->addPassesToEmitFile(
pass, dest, nullptr, llvm::TargetMachine::CGFT_AssemblyFile) == 0) pass, dest, nullptr, llvm::CGFT_AssemblyFile) == 0)
<< "Cannot emit target CGFT_AssemblyFile"; << "Cannot emit target CGFT_AssemblyFile";
#endif #endif
pass.run(*m); pass.run(*m);
...@@ -166,7 +166,7 @@ class LLVMModuleNode final : public runtime::ModuleNode { ...@@ -166,7 +166,7 @@ class LLVMModuleNode final : public runtime::ModuleNode {
<< "Cannot emit target CGFT_AssemblyFile"; << "Cannot emit target CGFT_AssemblyFile";
#else #else
CHECK(tm_->addPassesToEmitFile( CHECK(tm_->addPassesToEmitFile(
pass, rso, nullptr, llvm::TargetMachine::CGFT_AssemblyFile) == 0) pass, rso, nullptr, llvm::CGFT_AssemblyFile) == 0)
<< "Cannot emit target CGFT_AssemblyFile"; << "Cannot emit target CGFT_AssemblyFile";
#endif #endif
pass.run(*m); pass.run(*m);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment