mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
6aaaadc188
I did not convert Atomics-32.ll and Atomics-64.ll by hand; the diff is autoupgrade output. The wmb test is gone because there isn't any way to express wmb with the new atomic instructions; if someone really needs a non-asm way to write a wmb on Alpha, a platform-specific intrisic could be added. llvm-svn: 140566
7 lines
89 B
LLVM
7 lines
89 B
LLVM
; RUN: llc < %s -march=alpha | grep mb
|
|
|
|
define void @test() {
|
|
fence seq_cst
|
|
ret void
|
|
}
|