From 58d19a661dca4fd60c9c7921f61bafc87cb20470 Mon Sep 17 00:00:00 2001 From: Michael Gottesman Date: Wed, 30 Jan 2013 22:38:19 +0000 Subject: [PATCH] Encapsulate testing that we have an iOS Triple in Triple.h in the method isiOS so we follow the convention that all other platforms follow by having an is* test method. llvm-svn: 173983 --- llvm/include/llvm/ADT/Triple.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/Triple.h b/llvm/include/llvm/ADT/Triple.h index 7968a12..e987ffc 100644 --- a/llvm/include/llvm/ADT/Triple.h +++ b/llvm/include/llvm/ADT/Triple.h @@ -296,9 +296,14 @@ public: return getOS() == Triple::Darwin || getOS() == Triple::MacOSX; } + /// Is this an iOS triple. + bool isiOS() const { + return getOS() == Triple::IOS; + } + /// isOSDarwin - Is this a "Darwin" OS (OS X or iOS). bool isOSDarwin() const { - return isMacOSX() || getOS() == Triple::IOS; + return isMacOSX() || isiOS(); } /// \brief Tests for either Cygwin or MinGW OS -- 2.7.4