Bill Wendling 34ca5b3392 Remove stale assert.
This is triggered during serialization. The test is for modules, but
will occur for any serialization effort using asm goto.

Reviewed By: nickdesaulniers, jyknight

Differential Revision: https://reviews.llvm.org/D88195
2020-09-24 13:59:42 -07:00

14 lines
146 B
C

int foo(void) {
int x;
asm goto(""
: "=r"(x)
:
:
: indirect);
x = 42;
indirect:
return x;
}