[obj2yaml] - Fix a comment. NFC.
[llvm-complete.git] / test / MC / MachO / build-version-with-sdk-version.s
blobe96c2d520e172045d6defa13c13168e3d6936886
1 // RUN: llvm-mc -triple x86_64-apple-macos %s -filetype=obj -o - | llvm-readobj --macho-version-min | FileCheck %s
3 // Test the formation of the sdk_version component of the version load
4 // command in the MachO.
5 .build_version macos, 10,13,2 sdk_version 10,14,1
7 // CHECK: MinVersion {
8 // CHECK: Cmd: LC_BUILD_VERSION
9 // CHECK: Size: 24
10 // CHECK: Platform: macos
11 // CHECK: Version: 10.13.2
12 // CHECK: SDK: 10.14.1
13 // CHECK: }