diff --git a/include/llvm/Value.h b/include/llvm/Value.h index f3fa75ffda7..5c50fd0a5d3 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -31,6 +31,7 @@ class BasicBlock; class GlobalValue; class Function; class GlobalVariable; +class InlineAsm; class SymbolTable; //===----------------------------------------------------------------------===// @@ -213,6 +214,9 @@ template <> inline bool isa_impl(const Value &Val) { template <> inline bool isa_impl(const Value &Val) { return Val.getValueType() == Value::ArgumentVal; } +template <> inline bool isa_impl(const Value &Val) { + return Val.getValueType() == Value::InlineAsmVal; +} template <> inline bool isa_impl(const Value &Val) { return Val.getValueType() >= Value::InstructionVal; }