diff options
author | Dan Gohman <dan433584@gmail.com> | 2016-10-03 22:43:53 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2016-10-03 22:43:53 +0000 |
commit | e040533ecec5b1c0ab83c1c7b65342d46478afc5 (patch) | |
tree | a6b4a39b1f634ba7c71c9099947c293a693b09d2 /llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td | |
parent | ffc184bb1dd8a0f0815f12272286d24a2adefcc1 (diff) | |
download | bcm5719-llvm-e040533ecec5b1c0ab83c1c7b65342d46478afc5.tar.gz bcm5719-llvm-e040533ecec5b1c0ab83c1c7b65342d46478afc5.zip |
[WebAssembly] Update to more stack-machine-oriented terminology.
WebAssembly has officially switched from being an AST to being a stack
machine. Update various bits of terminology and README.md entries
accordingly.
llvm-svn: 283154
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td b/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td index 52456aac0b7..90888100be1 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td @@ -41,9 +41,9 @@ def F64_0 : WebAssemblyReg<"%f64.0">; def V128_0: WebAssemblyReg<"%v128">; -// The expression stack "register". This is an opaque entity which serves to -// order uses and defs that must remain in LIFO order. -def EXPR_STACK : WebAssemblyReg<"STACK">; +// The value stack "register". This is an opaque entity which serves to order +// uses and defs that must remain in LIFO order. +def VALUE_STACK : WebAssemblyReg<"STACK">; // The incoming arguments "register". This is an opaque entity which serves to // order the ARGUMENT instructions that are emulating live-in registers and |