This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
4917af67b6
llvm-project
/
llvm
/
test
/
CodeGen
/
X86
/
i128-immediate.ll
6 lines
108 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 08:28:10 +08:00
; RUN: llc < %s -mtriple=x86_64-- | grep movq | count 2
APIntify SelectionDAG's EXTRACT_ELEMENT code. llvm-svn: 48726
2008-03-25 00:38:05 +08:00
define
i128
@__addvti3
(
)
{
ret
i128
-1
}