diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-07 16:07:21 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-07 16:07:21 -0500 |
commit | a3b5826342e8764b49f9427182d69b725ac2b16a (patch) | |
tree | 0079f649f7e1b430322d6fb38b6099e6b162bc0c | |
parent | 254caa680afafd7f0be6c779bc714366bc8d235f (diff) |
fix typos
-rw-r--r-- | lib/Target/CppBackend/CallHandlers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/CppBackend/CallHandlers.h b/lib/Target/CppBackend/CallHandlers.h index 1e766821a2..6976fe1a2a 100644 --- a/lib/Target/CppBackend/CallHandlers.h +++ b/lib/Target/CppBackend/CallHandlers.h @@ -62,11 +62,11 @@ DEF_CALL_HANDLER(llvm_memmove_p0i8_p0i8_i32, { }) DEF_CALL_HANDLER(bitshift64Lshr, { - return CH___default__(CI, "_bitShift64LShr", 3) + "|0"; + return CH___default__(CI, "_bitshift64Lshr", 3) + "|0"; }) DEF_CALL_HANDLER(bitshift64Ashr, { - return CH___default__(CI, "_bitShift64Ashr", 3) + "|0"; + return CH___default__(CI, "_bitshift64Ashr", 3) + "|0"; }) #define DEF_REDIRECT_HANDLER_i(name, to) \ |