aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenModule.h
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2023-07-25 07:55:28 -0400
committerAaron Ballman <aaron@aaronballman.com>2023-07-25 07:57:36 -0400
commit0d12683046ca75fb08e285f4622f2af5c82609dc (patch)
treec5f9d22fbb45cec6deda5313bdf6c9eeda23abcb /clang/lib/CodeGen/CodeGenModule.h
parente7ab6982de87b14c9584e1267cd755561b4c063c (diff)
downloadllvm-0d12683046ca75fb08e285f4622f2af5c82609dc.zip
llvm-0d12683046ca75fb08e285f4622f2af5c82609dc.tar.gz
llvm-0d12683046ca75fb08e285f4622f2af5c82609dc.tar.bz2
Revert "[OpenMP] Add the `ompx_attribute` clause for target directives"
This reverts commit ef9ec4bbcca2fa4f64df47bc426f1d1c59ea47e2. The changes broke several bots: https://lab.llvm.org/buildbot/#/builders/176/builds/3408 https://lab.llvm.org/buildbot/#/builders/198/builds/4028 https://lab.llvm.org/buildbot/#/builders/197/builds/8491 https://lab.llvm.org/buildbot/#/builders/197/builds/8491
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h
index f5fd944..05cb217 100644
--- a/clang/lib/CodeGen/CodeGenModule.h
+++ b/clang/lib/CodeGen/CodeGenModule.h
@@ -1557,21 +1557,6 @@ public:
/// because we'll lose all important information after each repl.
void moveLazyEmissionStates(CodeGenModule *NewBuilder);
- /// Emit the IR encoding to attach the CUDA launch bounds attribute to \p F.
- void handleCUDALaunchBoundsAttr(llvm::Function *F,
- const CUDALaunchBoundsAttr *A);
-
- /// Emit the IR encoding to attach the AMD GPU flat-work-group-size attribute
- /// to \p F. Alternatively, the work group size can be taken from a \p
- /// ReqdWGS.
- void handleAMDGPUFlatWorkGroupSizeAttr(
- llvm::Function *F, const AMDGPUFlatWorkGroupSizeAttr *A,
- const ReqdWorkGroupSizeAttr *ReqdWGS = nullptr);
-
- /// Emit the IR encoding to attach the AMD GPU waves-per-eu attribute to \p F.
- void handleAMDGPUWavesPerEUAttr(llvm::Function *F,
- const AMDGPUWavesPerEUAttr *A);
-
private:
llvm::Constant *GetOrCreateLLVMFunction(
StringRef MangledName, llvm::Type *Ty, GlobalDecl D, bool ForVTable,