mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-08 21:37:35 +00:00
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) {
|
|
}
|