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 Original file line number Diff line number Diff line change 4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
6
6
* You may obtain a copy of the License at
7
- *
7
+ *
8
8
* http://www.apache.org/licenses/LICENSE-2.0
9
- *
9
+ *
10
10
* Unless required by applicable law or agreed to in writing, software
11
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -233,9 +233,10 @@ public ByteCycleGroup() {
233
233
234
234
private static class FloatCycleGroup extends CycleGroup {
235
235
public FloatCycleGroup () {
236
- super ("Cycle: float,double" );
236
+ super ("Cycle: float,double,longdouble " );
237
237
addDataType (new FloatDataType ());
238
238
addDataType (new DoubleDataType ());
239
+ addDataType (new LongDoubleDataType ());
239
240
240
241
defaultKeyStroke = KeyStroke .getKeyStroke (KeyEvent .VK_F , 0 );
241
242
}
You can’t perform that action at this time.
0 commit comments