summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Methodical
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/Methodical')
-rw-r--r--tests/src/JIT/Methodical/Boxing/callconv/instance.cs6
-rw-r--r--tests/src/JIT/Methodical/Boxing/functional/fibo.cs6
-rw-r--r--tests/src/JIT/Methodical/Boxing/functional/sin.cs6
-rw-r--r--tests/src/JIT/Methodical/Boxing/morph/sin.cs6
-rw-r--r--tests/src/JIT/Methodical/Boxing/seh/try.cs6
-rw-r--r--tests/src/JIT/Methodical/cctor/xassem/xprecise1.cs3
-rw-r--r--tests/src/JIT/Methodical/flowgraph/dev10_bug679008/GCOverReporting.cs6
-rw-r--r--tests/src/JIT/Methodical/structs/systemvbringup/structpasstest.cs3
-rw-r--r--tests/src/JIT/Methodical/structs/systemvbringup/structpasstest1.cs3
-rw-r--r--tests/src/JIT/Methodical/structs/systemvbringup/structpinvoketests.cs3
-rw-r--r--tests/src/JIT/Methodical/structs/systemvbringup/structrettest.cs3
-rw-r--r--tests/src/JIT/Methodical/xxobj/sizeof/sizeof32.cs6
-rw-r--r--tests/src/JIT/Methodical/xxobj/sizeof/sizeof64.cs6
13 files changed, 47 insertions, 16 deletions
diff --git a/tests/src/JIT/Methodical/Boxing/callconv/instance.cs b/tests/src/JIT/Methodical/Boxing/callconv/instance.cs
index d4b21865a0..1fd1fd8407 100644
--- a/tests/src/JIT/Methodical/Boxing/callconv/instance.cs
+++ b/tests/src/JIT/Methodical/Boxing/callconv/instance.cs
@@ -1,8 +1,10 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
namespace BoxTest
{
diff --git a/tests/src/JIT/Methodical/Boxing/functional/fibo.cs b/tests/src/JIT/Methodical/Boxing/functional/fibo.cs
index 2748edd938..c1f0f0f7ea 100644
--- a/tests/src/JIT/Methodical/Boxing/functional/fibo.cs
+++ b/tests/src/JIT/Methodical/Boxing/functional/fibo.cs
@@ -1,8 +1,10 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
namespace BoxTest
{
diff --git a/tests/src/JIT/Methodical/Boxing/functional/sin.cs b/tests/src/JIT/Methodical/Boxing/functional/sin.cs
index 0f2bf8c0c9..0c8beacbbd 100644
--- a/tests/src/JIT/Methodical/Boxing/functional/sin.cs
+++ b/tests/src/JIT/Methodical/Boxing/functional/sin.cs
@@ -1,8 +1,10 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
namespace SinCalc
{
diff --git a/tests/src/JIT/Methodical/Boxing/morph/sin.cs b/tests/src/JIT/Methodical/Boxing/morph/sin.cs
index dae2a80ea3..f1cb996f59 100644
--- a/tests/src/JIT/Methodical/Boxing/morph/sin.cs
+++ b/tests/src/JIT/Methodical/Boxing/morph/sin.cs
@@ -1,8 +1,10 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
namespace SinCalc
{
diff --git a/tests/src/JIT/Methodical/Boxing/seh/try.cs b/tests/src/JIT/Methodical/Boxing/seh/try.cs
index 2f910ea2f6..426f96e4f4 100644
--- a/tests/src/JIT/Methodical/Boxing/seh/try.cs
+++ b/tests/src/JIT/Methodical/Boxing/seh/try.cs
@@ -1,8 +1,10 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
namespace SinCalc
{
diff --git a/tests/src/JIT/Methodical/cctor/xassem/xprecise1.cs b/tests/src/JIT/Methodical/cctor/xassem/xprecise1.cs
index d7f4fbf8df..5f5d8b4bb5 100644
--- a/tests/src/JIT/Methodical/cctor/xassem/xprecise1.cs
+++ b/tests/src/JIT/Methodical/cctor/xassem/xprecise1.cs
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
// static method
using System;
namespace Precise {
diff --git a/tests/src/JIT/Methodical/flowgraph/dev10_bug679008/GCOverReporting.cs b/tests/src/JIT/Methodical/flowgraph/dev10_bug679008/GCOverReporting.cs
index 2b32908048..b88bdfca64 100644
--- a/tests/src/JIT/Methodical/flowgraph/dev10_bug679008/GCOverReporting.cs
+++ b/tests/src/JIT/Methodical/flowgraph/dev10_bug679008/GCOverReporting.cs
@@ -1,5 +1,7 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
/*
* If using a value type/struct that contains only a single reference type field, under certain situations the x64 JIT reports the stack location as a live GC pointer before zero-initializing it.
diff --git a/tests/src/JIT/Methodical/structs/systemvbringup/structpasstest.cs b/tests/src/JIT/Methodical/structs/systemvbringup/structpasstest.cs
index 5fcc53ca93..1faea11cb4 100644
--- a/tests/src/JIT/Methodical/structs/systemvbringup/structpasstest.cs
+++ b/tests/src/JIT/Methodical/structs/systemvbringup/structpasstest.cs
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
using System.Runtime.CompilerServices;
namespace structinreg
diff --git a/tests/src/JIT/Methodical/structs/systemvbringup/structpasstest1.cs b/tests/src/JIT/Methodical/structs/systemvbringup/structpasstest1.cs
index 11fe9977d7..959790b753 100644
--- a/tests/src/JIT/Methodical/structs/systemvbringup/structpasstest1.cs
+++ b/tests/src/JIT/Methodical/structs/systemvbringup/structpasstest1.cs
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
using System.Runtime.CompilerServices;
diff --git a/tests/src/JIT/Methodical/structs/systemvbringup/structpinvoketests.cs b/tests/src/JIT/Methodical/structs/systemvbringup/structpinvoketests.cs
index c28cea056f..7fc52039e5 100644
--- a/tests/src/JIT/Methodical/structs/systemvbringup/structpinvoketests.cs
+++ b/tests/src/JIT/Methodical/structs/systemvbringup/structpinvoketests.cs
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
using System.Runtime.InteropServices;
diff --git a/tests/src/JIT/Methodical/structs/systemvbringup/structrettest.cs b/tests/src/JIT/Methodical/structs/systemvbringup/structrettest.cs
index a5ebce5597..b228c21b54 100644
--- a/tests/src/JIT/Methodical/structs/systemvbringup/structrettest.cs
+++ b/tests/src/JIT/Methodical/structs/systemvbringup/structrettest.cs
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
using System.Runtime.CompilerServices;
diff --git a/tests/src/JIT/Methodical/xxobj/sizeof/sizeof32.cs b/tests/src/JIT/Methodical/xxobj/sizeof/sizeof32.cs
index b37c334ca3..bb711f0e24 100644
--- a/tests/src/JIT/Methodical/xxobj/sizeof/sizeof32.cs
+++ b/tests/src/JIT/Methodical/xxobj/sizeof/sizeof32.cs
@@ -1,8 +1,10 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
namespace JitTest
{
diff --git a/tests/src/JIT/Methodical/xxobj/sizeof/sizeof64.cs b/tests/src/JIT/Methodical/xxobj/sizeof/sizeof64.cs
index ab6be0a004..0762e670e3 100644
--- a/tests/src/JIT/Methodical/xxobj/sizeof/sizeof64.cs
+++ b/tests/src/JIT/Methodical/xxobj/sizeof/sizeof64.cs
@@ -1,8 +1,10 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
// sizeof converted to I8 and used with arithmetic operations