This website requires JavaScript.
Explore
Help
Sign In
RPCS3
/
llvm-mirror
Watch
1
Star
0
Fork
0
You've already forked llvm-mirror
mirror of
https://github.com/RPCS3/llvm-mirror.git
synced
2025-02-01 05:01:59 +01:00
Code
Issues
Projects
Releases
Wiki
Activity
llvm-mirror
/
test
/
CodeGen
/
X86
/
2003-11-03-GlobalBool.ll
5 lines
92 B
LLVM
Raw
Normal View
History
Unescape
Escape
X86: Do not use llc -march in tests. `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 llvm-svn: 309774
2017-08-02 00:28:10 +00:00
; RUN: llc < %s -mtriple=i686-- | FileCheck %s
New testcase llvm-svn: 9682
2003-11-03 19:27:17 +00:00
FileCheck-ize some tests in test/CodeGen/X86/ Patch by Jorge Gorbe! Differential Revision: https://reviews.llvm.org/D29807 llvm-svn: 295386
2017-02-17 00:29:59 +00:00
@X
=
global
i1
true
; CHECK-NOT: .byte true
Reference in New Issue
Copy Permalink