Mercurial > hg > CbC > CbC_llvm
annotate clang/test/CodeGenObjC/encode-test-4.m @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // RUN: %clang_cc1 -emit-llvm -o - %s -O2 | grep "ret i32 1" |
2 typedef long Integer; | |
3 typedef enum : Integer { Red, Green, Blue} Color; | |
4 typedef enum { Cyan, Magenta, Yellow, Key } PrintColor; | |
5 | |
236 | 6 int a(void) { |
150 | 7 return @encode(int) == @encode(int) && |
8 @encode(Color) == @encode(long) && | |
9 @encode(PrintColor) == @encode(int); | |
10 } |