xref: /aosp_15_r20/external/clang/test/CodeGen/mips-inline-asm-abi.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // REQUIRES: mips-registered-target
2 // RUN: %clang_cc1 -triple mips-linux-gnu -emit-obj -o - %s | \
3 // RUN:   llvm-readobj -h - | FileCheck %s
4 
5 // CHECK: EF_MIPS_ABI_O32
6 
7 __asm__(
8 "bar:\n"
9 "  nop\n"
10 );
11 
foo()12 void foo() {}
13