mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
`llc -march` is problematic because it only switches the target architecture, but leaves the operating system unchanged. This occasionally leads to indeterministic tests because the OS from LLVM_DEFAULT_TARGET_TRIPLE is used. However we can simply always use `llc -mtriple` instead. This changes all the tests to do this to avoid people using -march when they copy and paste parts of tests. See also the discussion in https://reviews.llvm.org/D35287 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@309774 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
586 B
LLVM
23 lines
586 B
LLVM
; RUN: llc < %s -mtriple=x86_64-- -mcpu=generic | FileCheck %s --check-prefix=CHECK --check-prefix=X86-64
|
|
; RUN: llc < %s -mtriple=i686-- -mcpu=generic | FileCheck %s --check-prefix=CHECK --check-prefix=X86
|
|
|
|
; Verify that we correctly lower the "Read Performance-Monitoring Counters"
|
|
; x86 builtin.
|
|
|
|
|
|
define i64 @test_builtin_read_pmc(i32 %ID) {
|
|
%1 = tail call i64 @llvm.x86.rdpmc(i32 %ID)
|
|
ret i64 %1
|
|
}
|
|
; CHECK-LABEL: test_builtin_read_pmc
|
|
; CHECK: rdpmc
|
|
; X86-NOT: shlq
|
|
; X86-NOT: or
|
|
; X86-64: shlq
|
|
; X86-64: or
|
|
; CHECK-NOT: mov
|
|
; CHECK: ret
|
|
|
|
declare i64 @llvm.x86.rdpmc(i32 %ID)
|
|
|