forked from OSchip/llvm-project
EngineBuilder setter method for UseMCJIT was missing return value.
llvm-svn: 129008
This commit is contained in:
parent
958d299fca
commit
300504c135
|
@ -556,8 +556,9 @@ public:
|
|||
|
||||
/// setUseMCJIT - Set whether the MC-JIT implementation should be used
|
||||
/// (experimental).
|
||||
void setUseMCJIT(bool Value) {
|
||||
EngineBuilder &setUseMCJIT(bool Value) {
|
||||
UseMCJIT = Value;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setMAttrs - Set cpu-specific attributes.
|
||||
|
|
Loading…
Reference in New Issue