Skip to content

Commit 760f2a2

Browse files
committed
GP-0: Added longdouble to FloatCycleGroup (Closes NationalSecurityAgency#7192)
1 parent c00d6e0 commit 760f2a2

File tree

1 file changed

+4
-3
lines changed
  • Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data

1 file changed

+4
-3
lines changed

Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/CycleGroup.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -233,9 +233,10 @@ public ByteCycleGroup() {
233233

234234
private static class FloatCycleGroup extends CycleGroup {
235235
public FloatCycleGroup() {
236-
super("Cycle: float,double");
236+
super("Cycle: float,double,longdouble");
237237
addDataType(new FloatDataType());
238238
addDataType(new DoubleDataType());
239+
addDataType(new LongDoubleDataType());
239240

240241
defaultKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_F, 0);
241242
}

0 commit comments

Comments
 (0)