projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add test to show suboptimal load merging behavior
[oota-llvm.git]
/
test
/
CodeGen
/
X86
/
prefixdata.ll
1
; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck %s
2
3
@i = linkonce_odr global i32 1
4
5
; CHECK: .type f,@function
6
; CHECK-NEXT: .long 1
7
; CHECK-NEXT: # 0x1
8
; CHECK-NEXT: f:
9
define void @f() prefix i32 1 {
10
ret void
11
}
12
13
; CHECK: .type g,@function
14
; CHECK-NEXT: .quad i
15
; CHECK-NEXT: g:
16
define void @g() prefix i32* @i {
17
ret void
18
}