X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTarget%2FAArch64%2FAArch64AddressTypePromotion.cpp;h=3afcdfb8b930dc44bb941a3a0be15fa559759715;hb=468e70fe4f9c3e4bbaf1729d20862c66c8542c66;hp=716e1a37b1f7fd4148485af13996c514180cfb58;hpb=1bfcd1f675919f7f6b669e171f65fe84db9d79a0;p=oota-llvm.git diff --git a/lib/Target/AArch64/AArch64AddressTypePromotion.cpp b/lib/Target/AArch64/AArch64AddressTypePromotion.cpp index 716e1a37b1f..3afcdfb8b93 100644 --- a/lib/Target/AArch64/AArch64AddressTypePromotion.cpp +++ b/lib/Target/AArch64/AArch64AddressTypePromotion.cpp @@ -57,6 +57,8 @@ EnableMerge("aarch64-type-promotion-merge", cl::Hidden, " the other."), cl::init(true)); +#define AARCH64_TYPE_PROMO_NAME "AArch64 Address Type Promotion" + //===----------------------------------------------------------------------===// // AArch64AddressTypePromotion //===----------------------------------------------------------------------===// @@ -76,7 +78,7 @@ public: } const char *getPassName() const override { - return "AArch64 Address Type Promotion"; + return AARCH64_TYPE_PROMO_NAME; } /// Iterate over the functions and promote the computation of interesting @@ -143,10 +145,10 @@ private: char AArch64AddressTypePromotion::ID = 0; INITIALIZE_PASS_BEGIN(AArch64AddressTypePromotion, "aarch64-type-promotion", - "AArch64 Type Promotion Pass", false, false) + AARCH64_TYPE_PROMO_NAME, false, false) INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) INITIALIZE_PASS_END(AArch64AddressTypePromotion, "aarch64-type-promotion", - "AArch64 Type Promotion Pass", false, false) + AARCH64_TYPE_PROMO_NAME, false, false) FunctionPass *llvm::createAArch64AddressTypePromotionPass() { return new AArch64AddressTypePromotion();