EngineBuilder setter method for UseMCJIT was missing return value.

llvm-svn: 129008
This commit is contained in:
Jim Grosbach 2011-04-06 16:35:19 +00:00
parent 958d299fca
commit 300504c135
1 changed files with 2 additions and 1 deletions

View File

@ -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.