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
[InstCombine] Signed saturation patterns
[llvm-complete.git]
/
test
/
CodeGen
/
MIR
/
Generic
/
parse-integer-true-false.mir
blob
80cfb11373e1d7a06ce6a0161b7774669d1b8907
1
# RUN: llc -run-pass none -o - %s | FileCheck %s
2
# Parse an i1 being a 'true' or 'false'
3
---
4
name: i1_true_false
5
body: |
6
bb.0:
7
; CHECK: %0:_(s1) = G_CONSTANT i1 true
8
; CHECK: %1:_(s1) = G_CONSTANT i1 false
9
%0:_(s1) = G_CONSTANT i1 true
10
%1:_(s1) = G_CONSTANT i1 false
11
...