summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Demers <alexandre.f.demers@gmail.com>2015-03-12 20:50:08 -0400
committerJose Fonseca <jfonseca@vmware.com>2015-03-13 13:52:52 +0000
commita38e6c4fbd6a941ec9ffb98bdf9f040cccda0247 (patch)
treeeb423576c4c3e766dc6826c40eac73acb7e00b77
parent1a469a34d517d4c24c60a613c7d1a56f77778c8e (diff)
gallivm: (trivial) Fix typo in comment introduced by 70dc8a
Fix typo in comment introduced by 70dc8a Signed-off-by: Alexandre Demers <alexandre.f.demers@gmail.com> Signed-off-by: Jose Fonseca <jfonseca@vmware.com>
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_misc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
index d60db91df95..4ede90bfd32 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
@@ -502,7 +502,7 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT,
#if HAVE_LLVM >= 0x0306
builder.setMCJITMemoryManager(std::unique_ptr<RTDyldMemoryManager>(MM));
- MM = NULL; // onwership taken by std::unique_ptr
+ MM = NULL; // ownership taken by std::unique_ptr
#else
builder.setMCJITMemoryManager(MM);
#endif