64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
11 lines
479 B
LLVM
11 lines
479 B
LLVM
; RUN: opt -module-summary %s -o %t1.bc
|
|
; RUN: opt -module-summary %p/Inputs/merge-triple.ll -o %t2.bc
|
|
; RUN: llvm-lto -thinlto-action=optimize %t1.bc %t2.bc
|
|
; RUN: llvm-dis < %t1.bc.thinlto.imported.bc | FileCheck %s --check-prefix=CHECK1
|
|
; RUN: llvm-dis < %t2.bc.thinlto.imported.bc | FileCheck %s --check-prefix=CHECK2
|
|
|
|
target triple = "x86_64-apple-macosx10.12.0"
|
|
|
|
; CHECK1: target triple = "x86_64-apple-macosx10.12.0"
|
|
; CHECK2: target triple = "x86_64-apple-macosx10.11.0"
|