Commit 812edcde authored by titzer@chromium.org's avatar titzer@chromium.org

Documentation: fix comments for CommuteCondition.

R=jkummerow@google.com, jkummerow@chromium.org
BUG=

Review URL: https://codereview.chromium.org/313283003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21685 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent c8b2fa45
......@@ -89,7 +89,7 @@ inline Condition NegateCondition(Condition cond) {
}
// Commute a condition such that a cond b == b cond' b.
// Commute a condition such that {a cond b == b cond' a}.
inline Condition CommuteCondition(Condition cond) {
switch (cond) {
case lo:
......
......@@ -265,7 +265,7 @@ inline Condition NegateCondition(Condition cond) {
return static_cast<Condition>(cond ^ 1);
}
// Commute a condition such that a cond b == b cond' b.
// Commute a condition such that {a cond b == b cond' a}.
inline Condition CommuteCondition(Condition cond) {
switch (cond) {
case lo:
......
......@@ -246,7 +246,7 @@ inline Condition NegateCondition(Condition cc) {
}
// Commute a condition such that a cond b == b cond' b.
// Commute a condition such that {a cond b == b cond' a}.
inline Condition CommuteCondition(Condition cc) {
switch (cc) {
case below:
......
......@@ -504,7 +504,7 @@ inline Condition NegateCondition(Condition cc) {
}
// Commute a condition such that a cond b == b cond' b.
// Commute a condition such that {a cond b == b cond' a}.
inline Condition CommuteCondition(Condition cc) {
switch (cc) {
case Uless:
......
......@@ -326,7 +326,7 @@ inline Condition NegateCondition(Condition cc) {
}
// Commute a condition such that a cond b == b cond' b.
// Commute a condition such that {a cond b == b cond' a}.
inline Condition CommuteCondition(Condition cc) {
switch (cc) {
case below:
......
......@@ -238,7 +238,7 @@ inline Condition NegateCondition(Condition cc) {
}
// Commute a condition such that a cond b == b cond' b.
// Commute a condition such that {a cond b == b cond' a}.
inline Condition CommuteCondition(Condition cc) {
switch (cc) {
case below:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment