brintos

brintos / llvm-project-archived public Read only

0
0
Text · 464 B · 3dc3c0a Raw
16 lines · plain
1; REQUIRES: x86-registered-target2; RUN: %clang_cc1 -triple x86_64-apple-darwin10 -S -o - %s | FileCheck %s3 4; RUN: %clang_cc1 -triple x86_64-pc-linux -S -o %t %s 2>&1 | \5; RUN: FileCheck --check-prefix=WARN %s6; WARN: warning: overriding the module target triple with x86_64-pc-linux7; RUN: FileCheck --check-prefix=LINUX %s < %t8 9target triple = "x86_64-apple-darwin10"10 11; CHECK: .globl _f012; LINUX: .globl f013define i32 @f0() nounwind ssp {14       ret i32 015}16