
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
17 lines
704 B
C
17 lines
704 B
C
// REQUIRES: powerpc-registered-target
|
|
// RUN: %clang_cc1 -triple powerpc64-unknown-unknown -faltivec -ffreestanding -S -o - %s | FileCheck %s
|
|
// RUN: %clang_cc1 -triple powerpc64-unknown-unknown -faltivec -ffreestanding -fno-lax-vector-conversions -S -o - %s | FileCheck %s
|
|
// RUN: %clang_cc1 -triple powerpc64-unknown-unknown -faltivec -ffreestanding -x c++ -S -o - %s | FileCheck %s
|
|
|
|
#include <altivec.h>
|
|
|
|
// Verify that simply including <altivec.h> does not generate any code
|
|
// (i.e. all inline routines in the header are marked "static")
|
|
|
|
// CHECK: .text
|
|
// CHECK-NEXT: .file
|
|
// CHECK-NEXT: {{^$}}
|
|
// CHECK-NEXT: .ident{{.*$}}
|
|
// CHECK-NEXT: .section ".note.GNU-stack","",@progbits
|
|
// CHECK-NOT: .
|