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
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
MIR
/
X86
/
large-immediate-operand-error.mir
blob
84e1c4fa8c12c48719791b58702c1c3dd0f21a0d
1
# RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2
3
--- |
4
5
define i32 @foo() {
6
entry:
7
ret i32 42
8
}
9
10
...
11
---
12
name: foo
13
body: |
14
bb.0.entry:
15
; CHECK: [[@LINE+1]]:20: integer literal is too large to be an immediate operand
16
$eax = MOV32ri 12346127502983478823754212949184914
17
RET64 $eax
18
...