forked from intel/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge from 'main' to 'sycl-web' (intel#132)
CONFLICT (content): Merge conflict in clang/include/clang/Basic/DiagnosticDriverKinds.td
- Loading branch information
Showing
431 changed files
with
775,851 additions
and
4,212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// REQUIRES: powerpc-registered-target | ||
// RUN: %clang_cc1 -triple powerpc-unknown-openbsd -emit-llvm -o - %s | FileCheck %s | ||
|
||
#include <stdarg.h> | ||
|
||
class something; | ||
typedef void (something::*method)(); | ||
|
||
method test(va_list ap) { | ||
return va_arg(ap, method); | ||
} | ||
// CHECK: using_regs: | ||
// CHECK-NEXT: getelementptr inbounds %struct.__va_list_tag, %struct.__va_list_tag* %{{[0-9]+}}, i32 0, i32 4 | ||
// CHECK-NEXT: load i8*, i8** %{{[0-9]+}}, align 4 | ||
// CHECK-NEXT: mul i8 %numUsedRegs, 4 | ||
// CHECK-NEXT: getelementptr inbounds i8, i8* %{{[0-9]+}}, i8 %{{[0-9]+}} | ||
// CHECK-NEXT: bitcast i8* %{{[0-9]+}} to { i32, i32 }** | ||
// CHECK-NEXT: add i8 %numUsedRegs, 1 | ||
// CHECK-NEXT: store i8 %{{[0-9]+}}, i8* %gpr, align 4 | ||
// CHECK-NEXT: br label %cont |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// REQUIRES: powerpc-registered-target | ||
// RUN: %clang_cc1 -triple powerpc-unknown-openbsd -fblocks -emit-llvm -o - %s | FileCheck %s | ||
|
||
#include <stdarg.h> | ||
|
||
id testObject(va_list ap) { | ||
return va_arg(ap, id); | ||
} | ||
// CHECK: @testObject | ||
// CHECK: using_regs: | ||
// CHECK-NEXT: getelementptr inbounds %struct.__va_list_tag, %struct.__va_list_tag* %{{[0-9]+}}, i32 0, i32 4 | ||
// CHECK-NEXT: load i8*, i8** %{{[0-9]+}}, align 4 | ||
// CHECK-NEXT: mul i8 %numUsedRegs, 4 | ||
// CHECK-NEXT: getelementptr inbounds i8, i8* %{{[0-9]+}}, i8 %{{[0-9]+}} | ||
// CHECK-NEXT: bitcast i8* %{{[0-9]+}} to i8** | ||
// CHECK-NEXT: add i8 %numUsedRegs, 1 | ||
// CHECK-NEXT: store i8 %{{[0-9]+}}, i8* %gpr, align 4 | ||
// CHECK-NEXT: br label %cont | ||
|
||
typedef void (^block)(void); | ||
block testBlock(va_list ap) { | ||
return va_arg(ap, block); | ||
} | ||
// CHECK: @testBlock | ||
// CHECK: using_regs: | ||
// CHECK-NEXT: getelementptr inbounds %struct.__va_list_tag, %struct.__va_list_tag* %{{[0-9]+}}, i32 0, i32 4 | ||
// CHECK-NEXT: load i8*, i8** %{{[0-9]+}}, align 4 | ||
// CHECK-NEXT: mul i8 %numUsedRegs, 4 | ||
// CHECK-NEXT: getelementptr inbounds i8, i8* %{{[0-9]+}}, i8 %{{[0-9]+}} | ||
// CHECK-NEXT: bitcast i8* %{{[0-9]+}} to void ()** | ||
// CHECK-NEXT: add i8 %numUsedRegs, 1 | ||
// CHECK-NEXT: store i8 %{{[0-9]+}}, i8* %gpr, align 4 | ||
// CHECK-NEXT: br label %cont |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.