Index: third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h |
diff --git a/third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h b/third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h |
index cf79a13cb68a18146c373fda1d0a0bacd63dcb25..f5837c9ec2eea738ee68d3d780ea4d2b2d590d8d 100644 |
--- a/third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h |
+++ b/third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h |
@@ -1,6 +1,6 @@ |
// Protocol Buffers - Google's data interchange format |
// Copyright 2012 Google Inc. All rights reserved. |
-// http://code.google.com/p/protobuf/ |
+// https://developers.google.com/protocol-buffers/ |
// |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
@@ -65,7 +65,7 @@ inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr, |
"2:\n" |
".set pop\n" |
: "=&r" (prev), "=m" (*ptr), "=&r" (tmp) |
- : "Ir" (old_value), "r" (new_value), "m" (*ptr) |
+ : "r" (old_value), "r" (new_value), "m" (*ptr) |
: "memory"); |
return prev; |
} |
@@ -197,7 +197,7 @@ inline Atomic64 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, |
"2:\n" |
".set pop\n" |
: "=&r" (prev), "=m" (*ptr), "=&r" (tmp) |
- : "Ir" (old_value), "r" (new_value), "m" (*ptr) |
+ : "r" (old_value), "r" (new_value), "m" (*ptr) |
: "memory"); |
return prev; |
} |