]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenObjC/constant-strings.m
Update clang to 91430.
[FreeBSD/FreeBSD.git] / test / CodeGenObjC / constant-strings.m
1 // RUN: clang -cc1 -emit-llvm -o %t %s
2 // RUN: clang -cc1 -fgnu-runtime -emit-llvm -o %t %s && grep NXConstantString %t | count 1
3 // RUN: clang -cc1 -fgnu-runtime -fconstant-string-class NSConstantString -emit-llvm -o %t %s && grep NSConstantString %t | count 1
4
5 id a = @"Hello World!";
6