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][Py Reformat] Reformat python files in llvm
[llvm-project.git]
/
llvm
/
test
/
Assembler
/
invalid-atomicrmw-add-must-be-integer-type.ll
blob
5f2f67cdc782266afa218e83583ab3562f7cbf7f
1
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
2
3
; CHECK: error: atomicrmw add operand must be an integer
4
define void @f(ptr %ptr) {
5
atomicrmw add ptr %ptr, float 1.0 seq_cst
6
ret void
7
}