X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FIR%2FIntrinsicInst.h;h=102cbef3b680a8d4677b9d77c99f55862bca003f;hb=cf0db29df20d9c665da7e82bb261bdd7cf7f1b2b;hp=6d981349edd85e175d56d161615d48aa43afb31f;hpb=e56023a059e5fafa97f0df32c65cf31cfc33ba17;p=oota-llvm.git diff --git a/include/llvm/IR/IntrinsicInst.h b/include/llvm/IR/IntrinsicInst.h index 6d981349edd..102cbef3b68 100644 --- a/include/llvm/IR/IntrinsicInst.h +++ b/include/llvm/IR/IntrinsicInst.h @@ -42,7 +42,7 @@ namespace llvm { /// getIntrinsicID - Return the intrinsic ID of this intrinsic. /// Intrinsic::ID getIntrinsicID() const { - return (Intrinsic::ID)getCalledFunction()->getIntrinsicID(); + return getCalledFunction()->getIntrinsicID(); } // Methods for support type inquiry through isa, cast, and dyn_cast: @@ -372,6 +372,6 @@ namespace llvm { return cast(const_cast(getArgOperand(3))); } }; -} +} // namespace llvm #endif