Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions clang/lib/CodeGen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,17 +117,17 @@ add_clang_library(clangCodeGen
PatternInit.cpp
SanitizerMetadata.cpp
SwiftCallingConv.cpp
TargetBuiltins/ARM.cpp
TargetBuiltins/AMDGPU.cpp
TargetBuiltins/DirectX.cpp
TargetBuiltins/Hexagon.cpp
TargetBuiltins/NVPTX.cpp
TargetBuiltins/PPC.cpp
TargetBuiltins/RISCV.cpp
TargetBuiltins/SPIR.cpp
TargetBuiltins/SystemZ.cpp
TargetBuiltins/WebAssembly.cpp
TargetBuiltins/X86.cpp
TargetBuiltins/BuiltinARM.cpp
TargetBuiltins/BuiltinAMDGPU.cpp
TargetBuiltins/BuiltinDirectX.cpp
TargetBuiltins/BuiltinHexagon.cpp
TargetBuiltins/BuiltinNVPTX.cpp
TargetBuiltins/BuiltinPPC.cpp
TargetBuiltins/BuiltinRISCV.cpp
TargetBuiltins/BuiltinSPIR.cpp
TargetBuiltins/BuiltinSystemZ.cpp
TargetBuiltins/BuiltinWebAssembly.cpp
TargetBuiltins/BuiltinX86.cpp
TargetInfo.cpp
Targets/AArch64.cpp
Targets/AMDGPU.cpp
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===------- AMDCPU.cpp - Emit LLVM Code for builtins ---------------------===//
//===------- BuiltinAMDGPU.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===---------- ARM.cpp - Emit LLVM Code for builtins ---------------------===//
//===---------- BuiltinARM.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===--------- DirectX.cpp - Emit LLVM Code for builtins ------------------===//
//===--------- BuiltinDirectX.cpp - Emit LLVM Code for builtins -----------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===------ Hexagon.cpp - Emit LLVM Code for builtins ---------------------===//
//===------ BuiltinHexagon.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===-------- NVPTX.cpp - Emit LLVM Code for builtins ---------------------===//
//===-------- BuiltinNVPTX.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===---------- PPC.cpp - Emit LLVM Code for builtins ---------------------===//
//===---------- BuiltinPPC.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===-------- RISCV.cpp - Emit LLVM Code for builtins ---------------------===//
//===-------- BuiltinRISCV.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===--------- SPIR.cpp - Emit LLVM Code for builtins ---------------------===//
//===--------- BuiltinSPIR.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===------ SystemZ.cpp - Emit LLVM Code for builtins ---------------------===//
//===------ BuiltinSystemZ.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===-- WebAssembly.cpp - Emit LLVM Code for builtins ---------------------===//
//===-- BuiltinWebAssembly.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===---------- X86.cpp - Emit LLVM Code for builtins ---------------------===//
//===---------- BuiltinX86.cpp - Emit LLVM Code for builtins --------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
Loading