view clang/test/CodeGen/mips-inline-asm-abi.c @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900 (2021-06-07)
parents 1d019706d866
children
line wrap: on
line source
// 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() {}