repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git]
/
test
/
CodeGen
/
X86
/
fast-isel-agg-constant.ll
blob
d782ec4c51c2b3ec0a2fb867a76894162f15dd8e
1
; RUN: llc < %s -mtriple=x86_64-- -O0 | FileCheck %s
2
; Make sure fast-isel doesn't screw up aggregate constants.
3
; (Failing out is okay, as long as we don't miscompile.)
4
5
%bar = type { i32 }
6
7
define i32 @foo() {
8
%tmp = extractvalue %bar { i32 3 }, 0
9
ret i32 %tmp
10
; CHECK: movl $3, %eax
11
}