mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
263cfecd4f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116476 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
220 B
C
9 lines
220 B
C
// Check that -emit-llvm [-S] works correctly.
|
|
|
|
// RUN: llvmc -c -emit-llvm -o - %s | llvm-dis | grep "@f0()" | count 1
|
|
// RUN: llvmc -c -emit-llvm -S -o - %s | grep "@f0()" | count 1
|
|
// XFAIL: vg_leak
|
|
|
|
int f0(void) {
|
|
}
|