View | Details | Raw Unified | Return to bug 255905
Collapse All | Expand All

(-)b/java/openjdk16/files/patch-commit-f8a9602a0a6 (+28 lines)
Added Link Here
1
commit f8a9602a0a65cdc98eb940aac9529256ded2bf42
2
Author: Yasumasa Suenaga <ysuenaga@openjdk.org>
3
Date:   Thu Jan 21 06:08:13 2021 +0000
4
5
    8260025: Missing comma in VM_Version_Ext::_family_id_amd
6
    
7
    Reviewed-by: dholmes, stuefe
8
9
diff --git src/hotspot/cpu/x86/vm_version_ext_x86.cpp src/hotspot/cpu/x86/vm_version_ext_x86.cpp
10
index 30d9494c654..a84b37f7977 100644
11
--- src/hotspot/cpu/x86/vm_version_ext_x86.cpp
12
+++ src/hotspot/cpu/x86/vm_version_ext_x86.cpp
13
@@ -1,5 +1,5 @@
14
 /*
15
- * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
16
+ * Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved.
17
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
18
  *
19
  * This code is free software; you can redistribute it and/or modify it
20
@@ -739,7 +739,7 @@ const char* const VM_Version_Ext::_family_id_amd[ExtendedFamilyIdLength_AMD] = {
21
   "",
22
   "",
23
   "Opteron/Athlon64",
24
-  "Opteron QC/Phenom"  // Barcelona et.al.
25
+  "Opteron QC/Phenom",  // Barcelona et.al.
26
   "",
27
   "",
28
   "",

Return to bug 255905