diff options
author | unknown <tomas@poseidon.(none)> | 2004-08-19 08:24:27 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.(none)> | 2004-08-19 08:24:27 +0000 |
commit | 9dc57a2a7fc1989c9781f37e8ef8cfd4f0536b85 (patch) | |
tree | dc978e73faf08880537932b2a7edf84e391ca74f /ndb | |
parent | 992ff0a27274c0c95da2f4ea1496bb9356201f89 (diff) | |
download | mariadb-git-9dc57a2a7fc1989c9781f37e8ef8cfd4f0536b85.tar.gz |
Some platfom compile/build fixes for ndb
ndb/include/kernel/Interpreter.hpp:
R1 defined on some platforms
ndb/include/util/BaseString.hpp:
fix for compiler bug
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/include/kernel/Interpreter.hpp | 6 | ||||
-rw-r--r-- | ndb/include/util/BaseString.hpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ndb/include/kernel/Interpreter.hpp b/ndb/include/kernel/Interpreter.hpp index 2c282be361c..74399f5732e 100644 --- a/ndb/include/kernel/Interpreter.hpp +++ b/ndb/include/kernel/Interpreter.hpp @@ -83,7 +83,7 @@ public: static Uint32 LoadConst64(Uint32 Register); // Value in next 2 words static Uint32 Add(Uint32 DstReg, Uint32 SrcReg1, Uint32 SrcReg2); static Uint32 Sub(Uint32 DstReg, Uint32 SrcReg1, Uint32 SrcReg2); - static Uint32 Branch(Uint32 Inst, Uint32 R1, Uint32 R2); + static Uint32 Branch(Uint32 Inst, Uint32 Reg1, Uint32 Reg2); static Uint32 ExitOK(); /** @@ -184,8 +184,8 @@ Interpreter::Sub(Uint32 Dcoleg, Uint32 SrcReg1, Uint32 SrcReg2){ inline Uint32 -Interpreter::Branch(Uint32 Inst, Uint32 R1, Uint32 R2){ - return (R1 << 9) + (R2 << 6) + Inst; +Interpreter::Branch(Uint32 Inst, Uint32 Reg1, Uint32 Reg2){ + return (Reg1 << 9) + (Reg2 << 6) + Inst; } inline diff --git a/ndb/include/util/BaseString.hpp b/ndb/include/util/BaseString.hpp index 8755c13e9bb..a1bb91ea9c5 100644 --- a/ndb/include/util/BaseString.hpp +++ b/ndb/include/util/BaseString.hpp @@ -176,7 +176,7 @@ public: /** * Trim string from <i>delim</i> */ - static char* trim(char * src, const char * delim = " \t"); + static char* trim(char * src, const char * delim); private: char* m_chr; unsigned m_len; |