aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetInstrInfo.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-07-09 15:15:24 +0000
committerDan Gohman <gohman@apple.com>2007-07-09 15:15:24 +0000
commit2c8c3e2e31e641085060edce0ddde3833ffa53da (patch)
treeb8b9d6380ca26cc97fde785b83e09ced3b921b36 /include/llvm/Target/TargetInstrInfo.h
parent2a69a04afacca3efc6de9472745dc03287c7d84f (diff)
downloadexternal_llvm-2c8c3e2e31e641085060edce0ddde3833ffa53da.zip
external_llvm-2c8c3e2e31e641085060edce0ddde3833ffa53da.tar.gz
external_llvm-2c8c3e2e31e641085060edce0ddde3833ffa53da.tar.bz2
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@38456 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetInstrInfo.h')
-rw-r--r--include/llvm/Target/TargetInstrInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index 8fa73a7..9a8e3b4 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -329,7 +329,7 @@ public:
/// convertToThreeAddress - This method must be implemented by targets that
/// set the M_CONVERTIBLE_TO_3_ADDR flag. When this flag is set, the target
- /// may be able to convert a two-address instruction into one or moretrue
+ /// may be able to convert a two-address instruction into one or more true
/// three-address instructions on demand. This allows the X86 target (for
/// example) to convert ADD and SHL instructions into LEA instructions if they
/// would require register copies due to two-addressness.