diff options
author | Robert Khasanov <rob.khasanov@gmail.com> | 2014-10-20 19:25:05 +0000 |
---|---|---|
committer | Robert Khasanov <rob.khasanov@gmail.com> | 2014-10-20 19:25:05 +0000 |
commit | 65c275686955f19f411ceaab593b42ebdcd242f3 (patch) | |
tree | 301c90496e9ada8af2ac5f232c7a9085f8a170a3 /llvm/lib/IR/Function.cpp | |
parent | 1a83db4f5e4888cea667f34a436569a39de84679 (diff) | |
download | llvm-65c275686955f19f411ceaab593b42ebdcd242f3.zip llvm-65c275686955f19f411ceaab593b42ebdcd242f3.tar.gz llvm-65c275686955f19f411ceaab593b42ebdcd242f3.tar.bz2 |
Moved out IIT_V64 from common values section.
Thanks Juergen Ributzka for notice.
llvm-svn: 220224
Diffstat (limited to 'llvm/lib/IR/Function.cpp')
-rw-r--r-- | llvm/lib/IR/Function.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/IR/Function.cpp b/llvm/lib/IR/Function.cpp index 13747ca..9e622bd 100644 --- a/llvm/lib/IR/Function.cpp +++ b/llvm/lib/IR/Function.cpp @@ -474,7 +474,7 @@ std::string Intrinsic::getName(ID id, ArrayRef<Type*> Tys) { /// /// NOTE: This must be kept in synch with the copy in TblGen/IntrinsicEmitter! enum IIT_Info { - // Common values should be encoded with 0-16. + // Common values should be encoded with 0-15. IIT_Done = 0, IIT_I1 = 1, IIT_I8 = 2, @@ -489,11 +489,11 @@ enum IIT_Info { IIT_V8 = 11, IIT_V16 = 12, IIT_V32 = 13, - IIT_V64 = 14, - IIT_PTR = 15, - IIT_ARG = 16, + IIT_PTR = 14, + IIT_ARG = 15, - // Values from 17+ are only encodable with the inefficient encoding. + // Values from 16+ are only encodable with the inefficient encoding. + IIT_V64 = 16, IIT_MMX = 17, IIT_METADATA = 18, IIT_EMPTYSTRUCT = 19, |