Dimitry Andric b1aa87e120 Fix several accidental DOS line endings in source files
Summary:
There are a number of files in the tree which have been accidentally checked in with DOS line endings. Convert these to native line endings.

There are also a few files which have DOS line endings on purpose, and I have set the svn:eol-style property to 'CRLF' on those.

Reviewers: joerg, aaron.ballman

Subscribers: aaron.ballman, cfe-commits

Differential Revision: http://reviews.llvm.org/D15849

llvm-svn: 256704
2016-01-03 15:55:40 +00:00

19 lines
460 B
C

// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin -target-feature +pku -emit-llvm -o - -Werror | FileCheck %s
// Don't include mm_malloc.h, it's system specific.
#define __MM_MALLOC_H
#include <immintrin.h>
unsigned int test_rdpkru_u32() {
// CHECK-LABEL: @test_rdpkru_u32
// CHECK: @llvm.x86.rdpkru
return _rdpkru_u32();
}
void test_wrpkru(unsigned int __A) {
// CHECK-LABEL: @test_wrpkru
// CHECK: @llvm.x86.wrpkru
_wrpkru(__A);
return ;
}