mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 20:29:30 +00:00
[Support] Simplify Triple::getOSVersion
Those who are interested in the Android version can use getEnvironmentVersion instead of getOSVersion. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3fcfa4873a
commit
3ba7d326d5
@ -815,21 +815,13 @@ void Triple::getEnvironmentVersion(unsigned &Major, unsigned &Minor,
|
||||
StringRef EnvironmentTypeName = getEnvironmentTypeName(getEnvironment());
|
||||
if (EnvironmentName.startswith(EnvironmentTypeName))
|
||||
EnvironmentName = EnvironmentName.substr(EnvironmentTypeName.size());
|
||||
|
||||
parseVersionFromName(EnvironmentName, Major, Minor, Micro);
|
||||
}
|
||||
|
||||
void Triple::getOSVersion(unsigned &Major, unsigned &Minor,
|
||||
unsigned &Micro) const {
|
||||
StringRef OSName = getOSName();
|
||||
|
||||
// For Android, we care about the Android version rather than the Linux
|
||||
// version.
|
||||
if (getEnvironment() == Android) {
|
||||
OSName = getEnvironmentName().substr(strlen("android"));
|
||||
if (OSName.startswith("eabi"))
|
||||
OSName = OSName.substr(strlen("eabi"));
|
||||
}
|
||||
|
||||
// Assume that the OS portion of the triple starts with the canonical name.
|
||||
StringRef OSTypeName = getOSTypeName(getOS());
|
||||
if (OSName.startswith(OSTypeName))
|
||||
|
Loading…
x
Reference in New Issue
Block a user