aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2013-10-24 10:04:47 +0000
committerYaron Keren <yaron.keren@gmail.com>2013-10-24 10:04:47 +0000
commit3985f6a98d39e306b145b766253d75d4de79cb9e (patch)
tree2e153bba5708716f545bbd145c658ee110696502 /lib/ExecutionEngine
parent817987350442e9349dbcf3416abaadc1796036a4 (diff)
downloadexternal_llvm-3985f6a98d39e306b145b766253d75d4de79cb9e.zip
external_llvm-3985f6a98d39e306b145b766253d75d4de79cb9e.tar.gz
external_llvm-3985f6a98d39e306b145b766253d75d4de79cb9e.tar.bz2
Replaced non-ASCII character.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193324 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/MCJIT/MCJIT.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/MCJIT/MCJIT.h b/lib/ExecutionEngine/MCJIT/MCJIT.h
index 8583a19..86b478b 100644
--- a/lib/ExecutionEngine/MCJIT/MCJIT.h
+++ b/lib/ExecutionEngine/MCJIT/MCJIT.h
@@ -75,7 +75,7 @@ private:
// The purpose of the "added" state is having modules in standby. (added=known
// but not compiled). The idea is that you can add a module to provide function
// definitions but if nothing in that module is referenced by a module in which
-// a function is executed (note the wording here because it’s not exactly the
+// a function is executed (note the wording here because it's not exactly the
// ideal case) then the module never gets compiled. This is sort of lazy
// compilation.
//