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
Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git]
/
llvm
/
test
/
Assembler
/
invalid-atomicrmw-fadd-must-be-fp-type.ll
blob
1088333625d9588f9a68b312bab1e692174efd3a
1
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
2
3
; CHECK: error: atomicrmw fadd operand must be a floating point type
4
define void @f(ptr %ptr) {
5
atomicrmw fadd ptr %ptr, i32 2 seq_cst
6
ret void
7
}