diff options
author | Dan Gohman <sunfish@google.com> | 2014-02-18 16:41:01 -0800 |
---|---|---|
committer | Dan Gohman <sunfish@google.com> | 2014-02-25 11:58:52 -0800 |
commit | 9232a22863aa8c2204079d19e4b24381b8fcbb88 (patch) | |
tree | 979df30c365f960c34be0a0196f023d540329a40 | |
parent | e024e7f3acfcfdcf153e675fdd15555949523f97 (diff) |
Fix a copy+pasto.
-rw-r--r-- | src/intertyper.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js index 10822e48..4e91261e 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -848,7 +848,7 @@ function intertyper(lines, sidePass, baseLineNums) { }).filter(function(param) { return param.value && param.value.ident != 'undef' }); return item; } - // 'phi' + // 'va_arg' function va_argHandler(item) { item.intertype = 'va_arg'; var segments = splitTokenList(item.tokens.slice(1)); |