brintos

brintos / llvm-project-archived public Read only

0
0
Text · 301 B · 7174631 Raw
10 lines · cpp
1// RUN: %clang_cc1 -emit-llvm -triple x86_64-unknown-linux-gnu %s -o - | FileCheck %s2 3// Define __complex128 type corresponding to __float128 (as in GCC headers).4typedef _Complex float __attribute__((mode(TC))) __complex128;5 6void check() {7  // CHECK: alloca { fp128, fp128 }8  __complex128 tmp;9}10