repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
mips-inline-asm-abi.c
blob
20c4f8d8be71fa368e781532f08b2f4ebca93083
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
12
void
foo
() {}