[SCEV] Don't unnecessarily namespace; NFC

llvm-svn: 273587
This commit is contained in:
Sanjoy Das 2016-06-23 18:03:32 +00:00
parent 81c00fe022
commit 2951e6b314
1 changed files with 3 additions and 3 deletions

View File

@ -155,15 +155,15 @@ namespace llvm {
} }
bool hasNoUnsignedWrap() const { bool hasNoUnsignedWrap() const {
return getNoWrapFlags(SCEV::FlagNUW) != SCEV::FlagAnyWrap; return getNoWrapFlags(FlagNUW) != FlagAnyWrap;
} }
bool hasNoSignedWrap() const { bool hasNoSignedWrap() const {
return getNoWrapFlags(SCEV::FlagNSW) != SCEV::FlagAnyWrap; return getNoWrapFlags(FlagNSW) != FlagAnyWrap;
} }
bool hasNoSelfWrap() const { bool hasNoSelfWrap() const {
return getNoWrapFlags(SCEV::FlagNW) != SCEV::FlagAnyWrap; return getNoWrapFlags(FlagNW) != FlagAnyWrap;
} }
/// Methods for support type inquiry through isa, cast, and dyn_cast: /// Methods for support type inquiry through isa, cast, and dyn_cast: