repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
PowerPC
/
big-endian-call-result.ll
blob
9d9dc6e8ff6240289f17101d22b79cbbc6403f29
1
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | \
2
; RUN: grep "addic 4, 4, 1"
3
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | \
4
; RUN: grep "addze 3, 3"
5
6
declare i64 @foo()
7
8
define i64 @bar()
9
{
10
%t = call i64 @foo()
11
%s = add i64 %t, 1
12
ret i64 %s
13
}