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-fsub-must-be-fp-type.ll
blob
f02cdde4b8ca0c0b00fe0e96b044632c028b7768
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(ptr %ptr) {
5
atomicrmw fsub ptr %ptr, i32 2 seq_cst
6
ret void
7
}