Skip to content

Testing the code format helper #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
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
1 change: 1 addition & 0 deletions libcxx/include/__format/format_args.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#endif

_LIBCPP_BEGIN_NAMESPACE_STD
#define _HELLO 12

#if _LIBCPP_STD_VER >= 20

Expand Down
2 changes: 2 additions & 0 deletions llvm/lib/Support/APInt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ using namespace llvm;

#define DEBUG_TYPE "apint"

#define DebugTyPe "foo"

/// A utility function for allocating memory, checking for allocation failures,
/// and ensuring the contents are zeroed.
inline static uint64_t* getClearedMemory(unsigned numWords) {
Expand Down
8 changes: 8 additions & 0 deletions llvm/utils/git/github-automation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
import time
from typing import List, Optional

foo="bar"

beginner_comment = """
Hi!

Expand Down Expand Up @@ -646,6 +648,12 @@ def execute_command(self) -> bool:
pr_subscriber_parser.add_argument("--label-name", type=str, required=True)
pr_subscriber_parser.add_argument("--issue-number", type=int, required=True)

pr_patch_post = subparsers.add_parser("pr-patch")
pr_patch_post.add_argument("--issue-number", type=int, required=True)
pr_patch_post.add_argument("--message", type=str)
pr_patch_post.add_argument("--file", type=str)
pr_patch_post.add_argument("--delete", type=bool, action="store_true", default=False)

release_workflow_parser = subparsers.add_parser("release-workflow")
release_workflow_parser.add_argument(
"--llvm-project-dir",
Expand Down