diff options
author | Daniel M Crowell <dcrowell@us.ibm.com> | 2019-08-04 14:29:43 -0500 |
---|---|---|
committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2019-08-08 16:43:33 -0500 |
commit | 4a6e203860f5b8cfeb7de3740b06f9bbaf2d5f1e (patch) | |
tree | b8d1df35478c328fe7cfea5054029041a4ca91f6 /src/usr/errl | |
parent | a51a388127115471fac1b871409ff6ccfacbfeef (diff) | |
download | talos-hostboot-4a6e203860f5b8cfeb7de3740b06f9bbaf2d5f1e.tar.gz talos-hostboot-4a6e203860f5b8cfeb7de3740b06f9bbaf2d5f1e.zip |
Revert "Compile Hostboot with -Os"
This reverts commit cd1e5c91e4a15ca933c699553ece9b841825ac03.
The previous change seems to be causing problems with
thread local storage (TLS) access.
CQ: SW471547
Change-Id: Ic6f43fbba2a3d5abe94ea73e8e5fd03702b84365
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/81652
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Tested-by: Daniel M Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/errl')
-rw-r--r-- | src/usr/errl/runtime/test/test_runtimeDeconfig.H | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/errl/runtime/test/test_runtimeDeconfig.H b/src/usr/errl/runtime/test/test_runtimeDeconfig.H index 0cf1a0a52..a9ba1ecbd 100644 --- a/src/usr/errl/runtime/test/test_runtimeDeconfig.H +++ b/src/usr/errl/runtime/test/test_runtimeDeconfig.H @@ -51,8 +51,8 @@ class deconfigureTargetAtRuntimeTest : public CxxTest::TestSuite // pass in a null target pointer TARGETING::Target * l_target = nullptr; - errlHndl_t l_errl = nullptr; - l_errl = HWAS::theDeconfigGard().deconfigureTargetAtRuntime( + errlHndl_t l_errl = + HWAS::theDeconfigGard().deconfigureTargetAtRuntime( l_target, HWAS::DeconfigGard::FULLY_AT_RUNTIME, l_errl); @@ -118,8 +118,8 @@ class deconfigureTargetAtRuntimeTest : public CxxTest::TestSuite l_target = l_cores.at(0); - errlHndl_t l_errl = nullptr; - l_errl = HWAS::theDeconfigGard().deconfigureTargetAtRuntime( + errlHndl_t l_errl = + HWAS::theDeconfigGard().deconfigureTargetAtRuntime( l_target, HWAS::DeconfigGard::SPEC_DECONFIG, l_errl); @@ -179,8 +179,8 @@ class deconfigureTargetAtRuntimeTest : public CxxTest::TestSuite TARGETING::Target * l_target = l_proc.at(0); - errlHndl_t l_errl = nullptr; - l_errl = HWAS::theDeconfigGard().deconfigureTargetAtRuntime( + errlHndl_t l_errl = + HWAS::theDeconfigGard().deconfigureTargetAtRuntime( l_target, HWAS::DeconfigGard::FULLY_AT_RUNTIME, l_errl); |