diff options
| author | Nowar Gu <nowar100@gmail.com> | 2011-06-23 11:08:11 +0800 |
|---|---|---|
| committer | Nowar Gu <nowar100@gmail.com> | 2011-06-23 11:09:52 +0800 |
| commit | bb5c18c80e7ae4ce49eb9067b664f0559ec50965 (patch) | |
| tree | 4f610e4e03d1c14658e597ce789cb0244fd9f4f8 /include/llvm/InlineAsm.h | |
| parent | 71fea9a88608e9c8fe8a8a523367878e279c3e90 (diff) | |
| parent | 2fa82bc3da45d272f12a96a61074b637faa62e0b (diff) | |
| download | external_llvm-bb5c18c80e7ae4ce49eb9067b664f0559ec50965.zip external_llvm-bb5c18c80e7ae4ce49eb9067b664f0559ec50965.tar.gz external_llvm-bb5c18c80e7ae4ce49eb9067b664f0559ec50965.tar.bz2 | |
Merge upstream to r133679 at Thu. 23th Jun 2011.
Diffstat (limited to 'include/llvm/InlineAsm.h')
| -rw-r--r-- | include/llvm/InlineAsm.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/InlineAsm.h b/include/llvm/InlineAsm.h index ed8f0f7..0d86086 100644 --- a/include/llvm/InlineAsm.h +++ b/include/llvm/InlineAsm.h @@ -25,15 +25,16 @@ class PointerType; class FunctionType; class Module; struct InlineAsmKeyType; -template<class ValType, class TypeClass, class ConstantClass, bool HasLargeKey> +template<class ValType, class ValRefType, class TypeClass, class ConstantClass, + bool HasLargeKey> class ConstantUniqueMap; template<class ConstantClass, class TypeClass, class ValType> struct ConstantCreator; class InlineAsm : public Value { friend struct ConstantCreator<InlineAsm, PointerType, InlineAsmKeyType>; - friend class ConstantUniqueMap<InlineAsmKeyType, PointerType, InlineAsm, - false>; + friend class ConstantUniqueMap<InlineAsmKeyType, const InlineAsmKeyType&, + PointerType, InlineAsm, false>; InlineAsm(const InlineAsm &); // do not implement void operator=(const InlineAsm&); // do not implement |
