X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FConstant.h;h=7464dce3303fb0d0283120f969bdd66de4b03c03;hb=5b957e6fd9853f938b8b33cfeb03d80595a9c2f8;hp=13acdc66b892450c7c0af0945859fd24e1c4324b;hpb=50bee42b54cd9aec5f49566307df2b0cf23afcf6;p=oota-llvm.git diff --git a/include/llvm/Constant.h b/include/llvm/Constant.h index 13acdc66b89..7464dce3303 100644 --- a/include/llvm/Constant.h +++ b/include/llvm/Constant.h @@ -39,8 +39,8 @@ namespace llvm { /// don't have to worry about the lifetime of the objects. /// @brief LLVM Constant Representation class Constant : public User { - void operator=(const Constant &); // Do not implement - Constant(const Constant &); // Do not implement + void operator=(const Constant &) LLVM_DELETED_FUNCTION; + Constant(const Constant &) LLVM_DELETED_FUNCTION; virtual void anchor(); protected: @@ -137,8 +137,8 @@ public: static Constant *getNullValue(Type* Ty); - /// @returns the value for an integer constant of the given type that has all - /// its bits set to true. + /// @returns the value for an integer or vector of integer constant of the + /// given type that has all its bits set to true. /// @brief Get the all ones value static Constant *getAllOnesValue(Type* Ty);