mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 06:56:06 +00:00

Over the years there's been many builtin types added without corresponding USRs. Add a `@BT@<name>` USR for all these types. Also add a comment so that hopefully this doesn't continue happening. `MSGuid` was also missing a USR, use `@MG@GUID{<uuid>}` for it. Resolves rdar://102198268. Differential Revision: https://reviews.llvm.org/D138322
6 lines
171 B
C
6 lines
171 B
C
__attribute__((overloadable))
|
|
void testFixedPoint(_Accum);
|
|
// CHECK: USR: c:@F@testFixedPoint#@BT@Accum#
|
|
|
|
// RUN: c-index-test -index-file %s -ffixed-point | FileCheck %s
|