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
[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2006-01-23-FileScopeAsm.c
blob
472b46496710f1557c9402cdad991e66932a26bb
1
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3
// CHECK: module asm "foo1"
4
__asm__
(
"foo1"
);
5
// CHECK: module asm "foo2"
6
__asm__
(
"foo2"
);
7
// CHECK: module asm "foo3"
8
__asm__
(
"foo3"
);
9
// CHECK: module asm "foo4"
10
__asm__
(
"foo4"
);
11
// CHECK: module asm "foo5"
12
__asm__
(
"foo5"
);