diff options
author | Alex Lorenz <arphaman@gmail.com> | 2017-05-03 10:42:35 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2017-05-03 10:42:35 +0000 |
commit | c748d7b57b2e383df1dc4ca088a1d6ea49ab1a55 (patch) | |
tree | f6375f274697e4ad88695a4351273ed7c3f26d29 /llvm/test/CodeGen/X86/version_directive.ll | |
parent | 05cfa83843943742762618c3a0e96dd33681778c (diff) | |
download | bcm5719-llvm-c748d7b57b2e383df1dc4ca088a1d6ea49ab1a55.tar.gz bcm5719-llvm-c748d7b57b2e383df1dc4ca088a1d6ea49ab1a55.zip |
[Triple] Add a "macos" OS type that acts as a synonym for "macosx"
The "macosx" OS type is still the canonical type. In the future "macos" will
become the canonical OS type (but we will still support "macosx").
rdar://27043820
Differential Revision: https://reviews.llvm.org/D32748
llvm-svn: 302011
Diffstat (limited to 'llvm/test/CodeGen/X86/version_directive.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/version_directive.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/version_directive.ll b/llvm/test/CodeGen/X86/version_directive.ll index 8e4e6dc70e6..ac5eda71dbc 100644 --- a/llvm/test/CodeGen/X86/version_directive.ll +++ b/llvm/test/CodeGen/X86/version_directive.ll @@ -1,4 +1,5 @@ ; RUN: llc -mtriple x86_64-apple-darwin15.0.0 -o - /dev/null | FileCheck %s ; RUN: llc -mtriple x86_64-apple-macosx10.11.0 -o - /dev/null | FileCheck %s +; RUN: llc -mtriple x86_64-apple-macos10.11.0 -o - /dev/null | FileCheck %s ; CHECK: .macosx_version_min 10, 11 |