blob: 41a30431da9456eab5a29d030c87449ec21c874a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
; RUN: not llc -march=js < %s
; Inline asm isn't supported (yet?). llc should report an error when it
; encounters inline asm.
;
; We could support the special case of an empty inline asm string without much
; work, but code that uses such things most likely isn't portable anyway, and
; there are usually much better alternatives.
define void @foo() {
call void asm "", ""()
ret void
}
|