Index: src/compiler/linkage.h |
diff --git a/src/compiler/linkage.h b/src/compiler/linkage.h |
index 8596327290b0643340868475e0a9580ad5ddb964..79f37f0154292f6bcab3d2c7ef6da59f46420c66 100644 |
--- a/src/compiler/linkage.h |
+++ b/src/compiler/linkage.h |
@@ -86,7 +86,7 @@ class LinkageLocation { |
LinkageLocation caller_location, int stack_param_delta) { |
if (!caller_location.IsRegister()) { |
return LinkageLocation(STACK_SLOT, |
- caller_location.GetLocation() - stack_param_delta); |
+ caller_location.GetLocation() + stack_param_delta); |
} |
return caller_location; |
} |