Mercurial > hg > CbC > CbC_llvm
annotate clang/test/CodeGenObjC/encode-test-4.m @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | c4bab56944e8 |
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 | |
6 int a() { | |
7 return @encode(int) == @encode(int) && | |
8 @encode(Color) == @encode(long) && | |
9 @encode(PrintColor) == @encode(int); | |
10 } |