mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00

Follow up to r247546. The test case reproduces the problem fixed by this commit. llvm-svn: 247548
13 lines
217 B
C
13 lines
217 B
C
// REQUIRES: mips-registered-target
|
|
// RUN: %clang_cc1 -triple mips-linux-gnu -emit-obj -o - %s | \
|
|
// RUN: llvm-readobj -h - | FileCheck %s
|
|
|
|
// CHECK: EF_MIPS_ABI_O32
|
|
|
|
__asm__(
|
|
"bar:\n"
|
|
" nop\n"
|
|
);
|
|
|
|
void foo() {}
|