diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-14 23:30:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-14 23:30:43 +0000 |
commit | 9e1657f79a7cf86a12be2c0a2b4ae4a2600266c6 (patch) | |
tree | 456afbf76527eaa49d51f3d4777dfa6df0787667 /include/llvm/Transforms | |
parent | 27bd4cbfcc489efac9e54a015950f06b91b9a725 (diff) | |
download | external_llvm-9e1657f79a7cf86a12be2c0a2b4ae4a2600266c6.zip external_llvm-9e1657f79a7cf86a12be2c0a2b4ae4a2600266c6.tar.gz external_llvm-9e1657f79a7cf86a12be2c0a2b4ae4a2600266c6.tar.bz2 |
Fix old-style type names in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r-- | include/llvm/Transforms/Scalar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Transforms/Scalar.h b/include/llvm/Transforms/Scalar.h index 2c3fdd4..971baee 100644 --- a/include/llvm/Transforms/Scalar.h +++ b/include/llvm/Transforms/Scalar.h @@ -143,10 +143,10 @@ Pass *createLoopIndexSplitPass(); // this pass is: // // FROM CODE TO CODE -// %X = alloca int, uint 1 ret int 42 -// store int 42, int *%X -// %Y = load int* %X -// ret int %Y +// %X = alloca i32, i32 1 ret i32 42 +// store i32 42, i32 *%X +// %Y = load i32* %X +// ret i32 %Y // FunctionPass *createPromoteMemoryToRegisterPass(); extern const PassInfo *const PromoteMemoryToRegisterID; |