diff options
author | Dan Gohman <dan433584@gmail.com> | 2015-12-02 18:08:49 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2015-12-02 18:08:49 +0000 |
commit | 53d13997925027af4e1d70d314d6bcb0b159672b (patch) | |
tree | 77e3c41311ee6669fd0d91ce699fb4139b9c95f3 /llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h | |
parent | 6846bc8de25da1da584912900e9bde9725f2b3c3 (diff) | |
download | bcm5719-llvm-53d13997925027af4e1d70d314d6bcb0b159672b.tar.gz bcm5719-llvm-53d13997925027af4e1d70d314d6bcb0b159672b.zip |
[WebAssembly] Fix comments to say "LIFO" instead of "FIFO" when describing a stack.
llvm-svn: 254523
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h b/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h index 4760f0d576e..62c5f33cfad 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h +++ b/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h @@ -37,7 +37,7 @@ class WebAssemblyFunctionInfo final : public MachineFunctionInfo { /// determined or made to meet the stack requirements: /// - single use (per path) /// - single def (per path) - /// - defined and used in FIFO order with other stack registers + /// - defined and used in LIFO order with other stack registers BitVector VRegStackified; public: |