brintos

brintos / llvm-project-archived public Read only

0
0
Text · 470 B · dc7fa1d Raw
16 lines · c
1// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -target-feature +altivec -fsyntax-only %s2// RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -target-feature +altivec -fsyntax-only %s3 4// PR16456: Verify that bool, true, false are treated as context-sensitive5// keywords (and therefore available for use as identifiers) when in6// Altivec mode.7 8typedef enum {9  false_value = 0,10  true_value = 111} bool;12 13#define true true_value14#define false false_value15 16