mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 18:34:09 +00:00
c19ff5c925
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20259 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
109 B
C
8 lines
109 B
C
// RUN: %llvmgcc %s -o /dev/null -S
|
|
|
|
#include <complex.h>
|
|
|
|
int foo(complex float c) {
|
|
return creal(c);
|
|
}
|