changeset 22624:9aeba02d5aae

fix typo
author Andreas Woess <andreas.woess@oracle.com>
date Mon, 14 Sep 2015 19:59:52 +0200
parents ed489bbcccbb
children 84a9a4860b0a
files graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/NodeIntrinsificationPlugin.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/NodeIntrinsificationPlugin.java	Mon Sep 14 16:34:26 2015 +0200
+++ b/graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/NodeIntrinsificationPlugin.java	Mon Sep 14 19:59:52 2015 +0200
@@ -128,7 +128,7 @@
         StringBuilder msg = new StringBuilder();
         msg.append("Call in ").append(b.getMethod().format("%H.%n(%p)"));
         msg.append(" to ").append(method.format("%H.%n(%p)"));
-        msg.append(" cannot be intrisified or folded, probably because an argument is not a constant. Arguments: ");
+        msg.append(" cannot be intrinsified or folded, probably because an argument is not a constant. Arguments: ");
         String sep = "";
         for (ValueNode node : args) {
             msg.append(sep).append(node.toString());