diff options
Diffstat (limited to 'llvm/lib/Support')
| -rw-r--r-- | llvm/lib/Support/Triple.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp index 8bb7f382329..ccb1a249761 100644 --- a/llvm/lib/Support/Triple.cpp +++ b/llvm/lib/Support/Triple.cpp @@ -356,6 +356,8 @@ Triple::OSType Triple::ParseOS(StringRef OSName) {      return Minix;    else if (OSName.startswith("rtems"))      return RTEMS; +  else if (OSName.startswith("nacl")) +    return NativeClient;    else      return UnknownOS;  } | 

