dummy_checker.cc (9793:6e6cefc1db1f) dummy_checker.cc (11150:a8a64cca231b)
1/*
2 * Copyright (c) 2011 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 59 unchanged lines hidden (view full) ---

68 temp2++;
69
70 params->itb = itb;
71 params->dtb = dtb;
72 params->isa = isa;
73 params->system = system;
74 params->cpu_id = cpu_id;
75 params->profile = profile;
1/*
2 * Copyright (c) 2011 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 59 unchanged lines hidden (view full) ---

68 temp2++;
69
70 params->itb = itb;
71 params->dtb = dtb;
72 params->isa = isa;
73 params->system = system;
74 params->cpu_id = cpu_id;
75 params->profile = profile;
76 params->interrupts = NULL;
77 params->workload = workload;
78
79 DummyChecker *cpu = new DummyChecker(params);
80 return cpu;
81}
76 params->workload = workload;
77
78 DummyChecker *cpu = new DummyChecker(params);
79 return cpu;
80}