diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-08-19 23:39:00 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-08-19 23:39:00 +0000 |
commit | 79976e9ff18265c5b8c991db0c2ff6d2edad94fe (patch) | |
tree | 168fa5f02b49ad44cb4a0471566b56796293b453 /include/llvm/CodeGen | |
parent | f942c13af8187415e59e82e0bc92420c6fd59009 (diff) | |
download | external_llvm-79976e9ff18265c5b8c991db0c2ff6d2edad94fe.zip external_llvm-79976e9ff18265c5b8c991db0c2ff6d2edad94fe.tar.gz external_llvm-79976e9ff18265c5b8c991db0c2ff6d2edad94fe.tar.bz2 |
Update comment to remove special case for vector extending loads. An
extending vector load should extend each element in the same way as the
corresponding scalar extending load.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111577 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/ISDOpcodes.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/ISDOpcodes.h b/include/llvm/CodeGen/ISDOpcodes.h index 69de598..578e074 100644 --- a/include/llvm/CodeGen/ISDOpcodes.h +++ b/include/llvm/CodeGen/ISDOpcodes.h @@ -633,7 +633,6 @@ namespace ISD { /// (the result of the load and the result of the base +/- offset /// computation); a post-indexed store produces one value (the /// the result of the base +/- offset computation). - /// enum MemIndexedMode { UNINDEXED = 0, PRE_INC, @@ -651,10 +650,8 @@ namespace ISD { /// integer result type. /// ZEXTLOAD loads the integer operand and zero extends it to a larger /// integer result type. - /// EXTLOAD is used for three things: floating point extending loads, - /// integer extending loads [the top bits are undefined], and vector - /// extending loads [load into low elt]. - /// + /// EXTLOAD is used for two things: floating point extending loads and + /// integer extending loads [the top bits are undefined]. enum LoadExtType { NON_EXTLOAD = 0, EXTLOAD, |