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
[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git]
/
llvm
/
test
/
Assembler
/
invalid-atomicrmw-fsub-must-be-fp-type.ll
blob
cd5bd4beff575322667ff35ae787009ce591bb8f
1
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
2
3
; CHECK: error: atomicrmw fsub operand must be a floating point type
4
define void @f(i32* %ptr) {
5
atomicrmw fsub i32* %ptr, i32 2 seq_cst
6
ret void
7
}