Skip to content

Commit dcbd32e

Browse files
rebase
Created using spr 1.3.7
2 parents e7992dd + d2accd3 commit dcbd32e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+415
-666
lines changed

.github/workflows/issue-write-test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
pull_request:
88
paths:
99
- '.github/workflows/issue-write-test.yaml'
10+
- '.github/workflows/issue-write.yml'
1011

1112
jobs:
1213
test-issue-write:

.github/workflows/issue-write.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
artifact-name: workflow-args
4242

4343
- name: 'Comment on PR'
44-
if: steps.download-artifact.outputs.artifact-id != ''
44+
if: steps.download-artifact.outputs.artifact-ids != ''
4545
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -161,5 +161,5 @@ jobs:
161161
- name: Dump comments file
162162
if: >-
163163
always() &&
164-
steps.download-artifact.outputs.artifact-id != ''
164+
steps.download-artifact.outputs.artifact-ids != ''
165165
run: cat comments

clang/lib/CodeGen/BackendUtil.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "llvm/ADT/StringExtras.h"
2020
#include "llvm/ADT/StringSwitch.h"
2121
#include "llvm/Analysis/GlobalsModRef.h"
22+
#include "llvm/Analysis/RuntimeLibcallInfo.h"
2223
#include "llvm/Analysis/TargetLibraryInfo.h"
2324
#include "llvm/Analysis/TargetTransformInfo.h"
2425
#include "llvm/Bitcode/BitcodeReader.h"
@@ -655,6 +656,11 @@ bool EmitAssemblyHelper::AddEmitPasses(legacy::PassManager &CodeGenPasses,
655656
llvm::driver::createTLII(TargetTriple, CodeGenOpts.getVecLib()));
656657
CodeGenPasses.add(new TargetLibraryInfoWrapperPass(*TLII));
657658

659+
const llvm::TargetOptions &Options = TM->Options;
660+
CodeGenPasses.add(new RuntimeLibraryInfoWrapper(
661+
TargetTriple, Options.ExceptionModel, Options.FloatABIType,
662+
Options.EABIVersion, Options.MCOptions.ABIName, Options.VecLib));
663+
658664
// Normal mode, emit a .s or .o file by running the code generator. Note,
659665
// this also adds codegenerator level optimization passes.
660666
CodeGenFileType CGFT = getCodeGenFileType(Action);

lldb/test/API/python_api/sbframe_extensions/Makefile

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)