diff options
Diffstat (limited to 'lib/Basic')
-rw-r--r-- | lib/Basic/TargetInfo.cpp | 14 | ||||
-rw-r--r-- | lib/Basic/Targets.cpp | 6 |
2 files changed, 10 insertions, 10 deletions
diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp index 14302206d2..6ef306d27e 100644 --- a/lib/Basic/TargetInfo.cpp +++ b/lib/Basic/TargetInfo.cpp @@ -98,7 +98,7 @@ const char *TargetInfo::getTypeConstantSuffix(IntType T) { } } -/// getTypeWidth - Return the width (in bits) of the specified integer type +/// getTypeWidth - Return the width (in bits) of the specified integer type /// enum. For example, SignedInt -> getIntWidth(). unsigned TargetInfo::getTypeWidth(IntType T) const { switch (T) { @@ -114,7 +114,7 @@ unsigned TargetInfo::getTypeWidth(IntType T) const { }; } -/// getTypeAlign - Return the alignment (in bits) of the specified integer type +/// getTypeAlign - Return the alignment (in bits) of the specified integer type /// enum. For example, SignedInt -> getIntAlign(). unsigned TargetInfo::getTypeAlign(IntType T) const { switch (T) { @@ -138,12 +138,12 @@ bool TargetInfo::isTypeSigned(IntType T) const { case SignedShort: case SignedInt: case SignedLong: - case SignedLongLong: + case SignedLongLong: return true; case UnsignedShort: case UnsignedInt: case UnsignedLong: - case UnsignedLongLong: + case UnsignedLongLong: return false; }; } @@ -164,7 +164,7 @@ void TargetInfo::setForcedLangOptions(LangOptions &Opts) { static llvm::StringRef removeGCCRegisterPrefix(llvm::StringRef Name) { if (Name[0] == '%' || Name[0] == '#') Name = Name.substr(1); - + return Name; } @@ -174,7 +174,7 @@ static llvm::StringRef removeGCCRegisterPrefix(llvm::StringRef Name) { bool TargetInfo::isValidGCCRegisterName(llvm::StringRef Name) const { if (Name.empty()) return false; - + const char * const *Names; unsigned NumNames; @@ -216,7 +216,7 @@ bool TargetInfo::isValidGCCRegisterName(llvm::StringRef Name) const { return false; } -llvm::StringRef +llvm::StringRef TargetInfo::getNormalizedGCCRegisterName(llvm::StringRef Name) const { assert(isValidGCCRegisterName(Name) && "Invalid register passed in"); diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 4326733c4e..bc1a19354f 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -1184,7 +1184,7 @@ void X86TargetInfo::getTargetDefines(const LangOptions &Opts, case NoMMXSSE: break; } - + // Each case falls through to the previous one here. switch (AMD3DNowLevel) { case AMD3DNowAthlon: @@ -1461,7 +1461,7 @@ public: "} __va_list_tag;" "typedef __va_list_tag __builtin_va_list[1];"; } - + int getEHDataRegisterNumber(unsigned RegNo) const { if (RegNo == 0) return 0; if (RegNo == 1) return 1; @@ -1479,7 +1479,7 @@ public: TLSSupported = false; WCharType = UnsignedShort; LongWidth = LongAlign = 32; - DoubleAlign = LongLongAlign = 64; + DoubleAlign = LongLongAlign = 64; IntMaxType = SignedLongLong; UIntMaxType = UnsignedLongLong; Int64Type = SignedLongLong; |